summaryrefslogtreecommitdiff
path: root/libiberty/concat.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2001-09-25 23:02:03 +0000
committerDJ Delorie <dj@delorie.com>2001-09-25 23:02:03 +0000
commita6dbac52170b160557e4abf730aadeca99a67777 (patch)
treea1ac3b68f25b6c68f39278b886189b22083908a9 /libiberty/concat.c
parent0911dad68b6bb0f1ef01ce4a8a4ddcc071ae1324 (diff)
downloadgdb-a6dbac52170b160557e4abf730aadeca99a67777.tar.gz
merge from gcc
Diffstat (limited to 'libiberty/concat.c')
-rw-r--r--libiberty/concat.c5
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;
}