summaryrefslogtreecommitdiff
path: root/function.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2014-07-07 01:59:03 -0400
committerPaul Smith <psmith@gnu.org>2014-07-07 01:59:03 -0400
commit475d52f2c41761349963683ab61eea4eef7a4915 (patch)
tree1a8e0f15f0dc8d22ed7c2472c87fc71ea1434e0c /function.c
parentbe009b9a889f4c58f69b4fb4bd8f5e98b9700555 (diff)
downloadmake-475d52f2c41761349963683ab61eea4eef7a4915.tar.gz
* various: Assume ISO C89-compliant free() implementation.
Diffstat (limited to 'function.c')
-rw-r--r--function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/function.c b/function.c
index bb62187d..9c0a0363 100644
--- a/function.c
+++ b/function.c
@@ -2425,7 +2425,7 @@ handle_function (char **op, const char **stringp)
if (entry_p->expand_args)
for (argvp=argv; *argvp != 0; ++argvp)
free (*argvp);
- else if (abeg)
+ else
free (abeg);
return 1;