Only statics are sure to be set to 0, explicitly initialise globals.

This commit is contained in:
Jon Griffiths 2003-08-18 19:48:58 +00:00 committed by Alexandre Julliard
parent ad86c25a8a
commit 3e12aba93f
1 changed files with 3 additions and 3 deletions

View File

@ -157,9 +157,9 @@ int preprocess_only = 0;
*/
int no_preprocess = 0;
char *output_name; /* The name given by the -o option */
char *input_name; /* The name given on the command-line */
char *temp_name; /* Temporary file for preprocess pipe */
char *output_name = NULL; /* The name given by the -o option */
char *input_name = NULL; /* The name given on the command-line */
char *temp_name = NULL; /* Temporary file for preprocess pipe */
int line_number = 1; /* The current line */
int char_number = 1; /* The current char pos within the line */