]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 203381 via svnmerge from
authorTerry Wilson <twilson@digium.com>
Thu, 25 Jun 2009 21:19:57 +0000 (21:19 +0000)
committerTerry Wilson <twilson@digium.com>
Thu, 25 Jun 2009 21:19:57 +0000 (21:19 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

................
  r203381 | twilson | 2009-06-25 16:15:11 -0500 (Thu, 25 Jun 2009) | 11 lines

  Merged revisions 203380 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r203380 | twilson | 2009-06-25 16:13:10 -0500 (Thu, 25 Jun 2009) | 4 lines

    I didn't see that Mark already fixed the underlying issue!

    Yay for removing useless code.
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@203393 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/cli.c

index 2e26f96bb4484f6584ffe6d5a2619a500c49eae9..e431cb80a7b72d4c9af0cc44e0e9875b94542b16 100644 (file)
@@ -135,8 +135,8 @@ 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;
 }