mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-07 15:01:10 +00:00
(string_buf_ptr): Init local variable.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1271 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f744067833
commit
095ebaaa4c
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/* Lex scanner for Objective C NeXT-compatible NXStringTable object
|
||||
Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Adam Fedor <adam@bastille.rmnug.org>
|
||||
|
||||
|
@ -43,7 +43,7 @@ ESCAPES [abfnrtv]
|
|||
%%
|
||||
/* Lexical initialization - This gets executed before any analysis */
|
||||
char string_buf[MAX_STRINGTABLE_LENGTH];
|
||||
char *string_buf_ptr;
|
||||
char *string_buf_ptr = NULL;
|
||||
static int got; /* Holds the type of token we just got */
|
||||
static int line;
|
||||
#ifndef HAVE_FLEX
|
||||
|
|
Loading…
Reference in a new issue