From 475d52f2c41761349963683ab61eea4eef7a4915 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Mon, 7 Jul 2014 01:59:03 -0400 Subject: * various: Assume ISO C89-compliant free() implementation. --- function.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'function.c') 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; -- cgit v1.2.1