Commit 9cdfc8e7 by James A. Morrison Committed by James A. Morrison

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
parent 80d4281f
2004-01-24 James A. Morrison <ja2morri@uwaterloo.ca>
* fixinc/fixinc.c (test_test): Initialize res.
(start_flexer): Initialize pz_cmd_save.
2004-01-27 Zack Weinberg <zack@codesourcery.com>
* doc/rtl.texi (Arithmetic): Rewrite entries for PLUS,
......
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment