diff options
author | 2001-09-25 23:02:03 +0000 | |
---|---|---|
committer | 2001-09-25 23:02:03 +0000 | |
commit | 66c94e19fcc26fe6df70610769923f990ad9f187 (patch) | |
tree | 5177d8e06e9744c84ff056531fd801f6dbe29576 /libiberty/concat.c | |
parent | * elf64-sparc.c (sparc64_elf_build_plt): Fix .plt[32768+] slot (diff) | |
download | binutils-gdb-66c94e19fcc26fe6df70610769923f990ad9f187.tar.gz binutils-gdb-66c94e19fcc26fe6df70610769923f990ad9f187.tar.bz2 binutils-gdb-66c94e19fcc26fe6df70610769923f990ad9f187.zip |
merge from gcc
Diffstat (limited to 'libiberty/concat.c')
-rw-r--r-- | libiberty/concat.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libiberty/concat.c b/libiberty/concat.c index 136e8be866e..cf026cf8f4c 100644 --- a/libiberty/concat.c +++ b/libiberty/concat.c @@ -188,10 +188,9 @@ reconcat VPARAMS ((char *optr, const char *first, ...)) VA_FIXEDARG (args, char *, optr); VA_FIXEDARG (args, const char *, first); vconcat_copy (newstr, first, args); - VA_CLOSE (args); - - if (optr) + if (optr) /* Done before VA_CLOSE so optr stays in scope for K&R C. */ free (optr); + VA_CLOSE (args); return newstr; } |