summaryrefslogtreecommitdiff
path: root/main/cli.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2009-05-28 15:35:23 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2009-05-28 15:35:23 +0000
commit98ce0e5b6c811ff8037e3267323f39a046c0badc (patch)
treeccd75c3d71febe30e9333c58f5acfa463b350934 /main/cli.c
parente37ee42e6c29a22fab370b109cbc2182b4ccd386 (diff)
Eliminate several needless checks and fix a few memory leaks
(closes issue #14833) Reported by: contactmayankjain Patches: all_changes.patch uploaded by contactmayankjain (license 740) slightly modified by me git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@197616 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/cli.c')
-rw-r--r--main/cli.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/main/cli.c b/main/cli.c
index 136d56a1e..1bfe263f0 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -235,8 +235,7 @@ static char *complete_fn(const char *word, int state)
c += (strlen(ast_config_AST_MODULE_DIR) + 1);
if (c)
c = ast_strdup(c);
- if (d)
- free(d);
+ free(d);
return c;
}