From c71ab7923908b96826f40d7f88b5aee67f24c789 Mon Sep 17 00:00:00 2001 From: bbryant Date: Wed, 16 Jul 2008 22:28:01 +0000 Subject: Janitor project: convert free to ast_free (closes issue #13082) Reported by: eliel Patches: app_rpt.c.patch uploaded by eliel (license 64) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@131529 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_rpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/app_rpt.c b/apps/app_rpt.c index 707c4e169..aa0218ba8 100644 --- a/apps/app_rpt.c +++ b/apps/app_rpt.c @@ -14741,11 +14741,11 @@ static int rpt_manager_do_stats(struct mansession *s, const struct message *m, c astman_append(s, "RemOffset: %c\r\n", offsetc); if(rxplon && rxpl){ astman_append(s, "RxPl: %s\r\n",rxpl); - free(rxpl); + ast_free(rxpl); } if(txplon && txpl){ astman_append(s, "TxPl: %s\r\n",txpl); - free(txpl); + ast_free(txpl); } } switch(powerlevel){ -- cgit v1.2.3