Commit e9761425 by Philippe De Muyter Committed by Jeff Law

* cccp.c (do_include): Avoid initialization of automatic variable.

From-SVN: r30682
parent 915b80ed
Sun Nov 28 00:48:15 1999 Philippe De Muyter <phdm@macqel.be>
* cccp.c (do_include): Avoid initialization of automatic variable.
* integrate.c (mark_stores): Function definition made void, to match
previous declaration.
* regclass.c (dump_regclass): Ditto.
......
......@@ -4554,7 +4554,9 @@ get_filename:
since it would put extra spaces in include file names. */
U_CHAR *src;
int errors_before_expansion = errors;
FILE_BUF trybuf = expand_to_temp_buffer (buf, limit, 1, 0);
FILE_BUF trybuf;
trybuf = expand_to_temp_buffer (buf, limit, 1, 0);
if (errors != errors_before_expansion) {
free (trybuf.buf);
goto invalid_include_file_name;
......
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