home · contact · privacy
Fix non-initializations that are detected as errors on gcc -O3.
[plomrogue] / src / client / interface_conf.c
index f5a05973d6dacceb4d8a50c2d6e7e5e988dec82e..6d4d65a953dd3aa0d5908798d7b63bbad89f0875 100644 (file)
@@ -143,7 +143,7 @@ static void write_def(FILE * file, char * prefix, uint8_t quotes, char * val,
                       char type)
 {
     char * f_name = "write_def()";
-    char * val_str;
+    char * val_str = NULL;
     int test_val_str = 1;
     if      ('s' == type)
     {