aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-01 06:07:18 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-01 06:07:18 +0000
commit97e8364d35f2d773e3fbcc2dd452a3d41afa7cd3 (patch)
tree142bce1e2158bebd1003cf0026af707ab55937ab /apps
parent8380627624844335a7d4359916942ae15e6bcf5a (diff)
Janitor: use ast_free to pair calls of ast_malloc and ast_calloc
Reported by: eliel Patch by: eliel Closes issue #11135 git-svn-id: http://svn.digium.com/svn/asterisk/trunk@88008 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 7b67d6b23..1676b6d29 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -815,7 +815,7 @@ static struct ast_conference *build_conf(char *confno, char *pin, char *pinadmin
ast_log(LOG_WARNING, "Unable to open pseudo device\n");
if (cnf->fd >= 0)
close(cnf->fd);
- free(cnf);
+ ast_free(cnf);
cnf = NULL;
goto cnfout;
}