License: X11
ChangeLog:
Jon Griffiths <jon_p_griffiths@yahoo.com>
+tools/wrc/wrc.c
Only statics are sure to be set to 0, explicitly initialise globals.
=====
"Don't wait for the seas to part, or messiahs to come;
Don't you sit around and waste this chance..." - Live
jon_p_griffiths@yahoo.com
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
--- wine/tools/wrc/wrc.c Sat May 31 12:38:16 2003
+++ wine-develop/tools/wrc/wrc.c Thu Jul 24 20:49:19 2003
@@ -157,9 +157,9 @@
*/
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 */