[svn-commits] mmichelson: branch group/upenn r101014 - /team/group/upenn/apps/app_voicemail.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Jan 29 15:17:03 CST 2008
Author: mmichelson
Date: Tue Jan 29 15:17:03 2008
New Revision: 101014
URL: http://svn.digium.com/view/asterisk?view=rev&rev=101014
Log:
Backporting fix for issue 11448 from trunk to the upenn branch.
This patch changes some calls to "free" to "ast_free"
Modified:
team/group/upenn/apps/app_voicemail.c
Modified: team/group/upenn/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/team/group/upenn/apps/app_voicemail.c?view=diff&rev=101014&r1=101013&r2=101014
==============================================================================
--- team/group/upenn/apps/app_voicemail.c (original)
+++ team/group/upenn/apps/app_voicemail.c Tue Jan 29 15:17:03 2008
@@ -7045,9 +7045,9 @@
if (vmu)
free_user(vmu);
if (vms.deleted)
- free(vms.deleted);
+ ast_free(vms.deleted);
if (vms.heard)
- free(vms.heard);
+ ast_free(vms.heard);
ast_module_user_remove(u);
return res;
More information about the svn-commits
mailing list