]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix memory leak.
authorTilghman Lesher <tilghman@meg.abyt.es>
Thu, 17 Jul 2008 15:45:25 +0000 (15:45 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Thu, 17 Jul 2008 15:45:25 +0000 (15:45 +0000)
(Closes issue #13096)
Reported by gknispel_proformatique

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

res/res_config_sqlite.c

index c1ee895bfe9d84505bfb0216743403b15bc9a22e..1dcf254e3184fde0fc8b6e1d494d672125462419 100644 (file)
@@ -1091,6 +1091,7 @@ static struct ast_config *realtime_multi_handler(const char *database,
 
        if (!(tmp_str = sqlite_mprintf("%s ORDER BY %q;", query, initfield))) {
                ast_log(LOG_WARNING, "Unable to reallocate SQL query\n");
+               sqlite_freemem(query);
                ast_config_destroy(cfg);
                ast_free(initfield);
                return NULL;