From e976142538b70b7310c8827bd9293b78c2e7afe5 Mon Sep 17 00:00:00 2001 From: Philippe De Muyter Date: Sun, 28 Nov 1999 08:56:53 +0100 Subject: * cccp.c (do_include): Avoid initialization of automatic variable. From-SVN: r30682 --- gcc/cccp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gcc/cccp.c') diff --git a/gcc/cccp.c b/gcc/cccp.c index ebdbd4c..ef56112 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -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; -- cgit v1.1