diff options
author | James A. Morrison <ja2morri@uwaterloo.ca> | 2004-01-27 19:10:10 +0000 |
---|---|---|
committer | James A. Morrison <phython@gcc.gnu.org> | 2004-01-27 19:10:10 +0000 |
commit | 9cdfc8e7e2a919864bbca6a0196617a0d50e3987 (patch) | |
tree | bb3370cee86da9dcabcf0af8f5f0cc89987025de /gcc/fixinc | |
parent | 80d4281fc5c07c3b183d87f3e7da94b12f747caf (diff) | |
download | gcc-9cdfc8e7e2a919864bbca6a0196617a0d50e3987.zip gcc-9cdfc8e7e2a919864bbca6a0196617a0d50e3987.tar.gz gcc-9cdfc8e7e2a919864bbca6a0196617a0d50e3987.tar.bz2 |
fixinc.c (test_test): Initialize res.
2004-01-24 James A. Morrison <ja2morri@uwaterloo.ca>
* fixinc/fixinc.c (test_test): Initialize res.
(start_flexer): Initialize pz_cmd_save.
From-SVN: r76738
Diffstat (limited to 'gcc/fixinc')
-rw-r--r-- | gcc/fixinc/fixincl.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/fixinc/fixincl.c b/gcc/fixinc/fixincl.c index 5b92c3c..690184b 100644 --- a/gcc/fixinc/fixincl.c +++ b/gcc/fixinc/fixincl.c @@ -647,6 +647,7 @@ fi"; default: fprintf (stderr, "Script yielded bogus result of `%s':\n%s\n\n", pz_res, cmd_buf ); + res = SKIP_FIX; } free ((void *) pz_res); @@ -1027,7 +1028,10 @@ start_fixer (int read_fd, tFixDesc* p_fixd, char* pz_fix_file) return internal_fix (read_fd, p_fixd); if ((p_fixd->fd_flags & FD_SHELL_SCRIPT) == 0) - pz_cmd = (char*)NULL; + { + pz_cmd = NULL; + pz_cmd_save = NULL; + } else { tSCC z_cmd_fmt[] = "file='%s'\n%s"; |