summaryrefslogtreecommitdiff
path: root/cli.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-11-09 19:33:39 +0000
committerMark Spencer <markster@digium.com>2003-11-09 19:33:39 +0000
commit9f110a3b8162bd4066ca423c36bf2173420bfb3d (patch)
tree2f1c96cacfe028a1445442a9f639761c5d5717b4 /cli.c
parentf4cafc5041a0e5e7fa340b2c97315431624d5e85 (diff)
CLI memory leak patch
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1712 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'cli.c')
-rwxr-xr-xcli.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli.c b/cli.c
index ae6876fad..544ead830 100755
--- a/cli.c
+++ b/cli.c
@@ -864,12 +864,14 @@ int ast_cli_generatornummatches(char *text, char *word)
while ( (buf = ast_cli_generator(text, word, i)) ) {
if (++i > 1 && strcmp(buf,oldbuf) == 0) {
+ free(buf);
continue;
}
oldbuf = buf;
matches++;
}
-
+ free(oldbuf);
+ free(buf);
return matches;
}