[svn-commits] bbryant: trunk r131529 - /trunk/apps/app_rpt.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jul 16 17:28:02 CDT 2008


Author: bbryant
Date: Wed Jul 16 17:28:01 2008
New Revision: 131529

URL: http://svn.digium.com/view/asterisk?view=rev&rev=131529
Log:
Janitor project: convert free to ast_free

(closes issue #13082)
Reported by: eliel
Patches:
      app_rpt.c.patch uploaded by eliel (license 64)

Modified:
    trunk/apps/app_rpt.c

Modified: trunk/apps/app_rpt.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_rpt.c?view=diff&rev=131529&r1=131528&r2=131529
==============================================================================
--- trunk/apps/app_rpt.c (original)
+++ trunk/apps/app_rpt.c Wed Jul 16 17:28:01 2008
@@ -14741,11 +14741,11 @@
 						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){




More information about the svn-commits mailing list