Only statics are sure to be set to 0, explicitly initialise globals.
This commit is contained in:
parent
ad86c25a8a
commit
3e12aba93f
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue