aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-04 19:32:50 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-04 19:32:50 +0000
commita42ea0f970a9508bcbd1a0c8a5be8a186e7b204d (patch)
tree0bc54040c0c17dcc436ab7b3f6d5655a0b98b9be /apps
parent9cbe4b278ee990234ca9488afb54e4907d0ce1d1 (diff)
Merged revisions 216593 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r216593 | seanbright | 2009-09-04 15:29:02 -0400 (Fri, 04 Sep 2009) | 1 line Use ast_free() instead of free(). ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@216597 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 79b7063b2..14baf9488 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -2354,7 +2354,7 @@ static struct ast_vm_user *find_user_realtime_imapuser(const char *imapuser)
ast_variables_destroy(var);
return vmu;
} else {
- free(vmu);
+ ast_free(vmu);
return NULL;
}
}