10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c4bc6 commit 8e3f3abCopy full SHA for 8e3f3ab
src/interfaces/ecpg/preproc/ecpg.c
@@ -327,6 +327,7 @@ main(int argc, char *const argv[])
327
fprintf(stderr, _("%s: could not open file \"%s\": %s\n"),
328
progname, output_filename, strerror(errno));
329
free(output_filename);
330
+ output_filename = NULL;
331
free(input_filename);
332
continue;
333
}
@@ -474,8 +475,10 @@ main(int argc, char *const argv[])
474
475
476
477
- if (output_filename && out_option == 0)
478
+ if (output_filename && out_option == 0) {
479
480
481
+ }
482
483
484
0 commit comments