diff options
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index d58d326..bf48029 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -755,7 +755,10 @@ fname_as_string (int pretty_p) strname.len = len - 1; if (cpp_interpret_string (parse_in, &strname, 1, &cstr, false)) - return (char *) cstr.text; + { + XDELETEVEC (namep); + return (char *) cstr.text; + } } else namep = xstrdup (name); |