From 3a554b86a483160496108844de986804baeca00a Mon Sep 17 00:00:00 2001 From: russell Date: Fri, 19 Jan 2007 16:44:09 +0000 Subject: Fix a memory leak on command line tab completion. The container for the matches was freed, but the individual matches themselves were not. (issue #8851, arkadia) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@51300 f38db490-d61c-443f-a65b-d21fe96a405b --- asterisk.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/asterisk.c b/asterisk.c index bc15eb5c7..d3b3989de 100644 --- a/asterisk.c +++ b/asterisk.c @@ -1656,7 +1656,9 @@ static char *cli_complete(EditLine *el, int ch) retval = CC_REFRESH; } } - free(matches); + for (i=0; matches[i]; i++) + free(matches[i]); + free(matches); } return (char *)(long)retval; -- cgit v1.2.3