summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2009-09-04 19:29:02 +0000
committerSean Bright <sean@malleable.com>2009-09-04 19:29:02 +0000
commit40d83cf7484820d028dc7ea149fbb32362a129ce (patch)
treee720cd19b8f8098b08e6db0935b80e2af30e444e /apps
parent5dfaf5c8b7ca3bfc711a7cd2f6bd87d2ace0b6d8 (diff)
Use ast_free() instead of free().
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@216593 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 7cfbf1b58..a61af0ef0 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -2357,7 +2357,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;
}
}