summaryrefslogtreecommitdiff
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2008-12-05 16:04:36 +0000
committerSean Bright <sean@malleable.com>2008-12-05 16:04:36 +0000
commit3eee1dbb9bf4700eaa17e705cb76adb3f9dbd63f (patch)
tree26d7251af557576253e3f946a7d6abc8ad07cb08 /apps/app_voicemail.c
parent9d2a8810e6b0d7b4f7daad123d853db32eedf0f6 (diff)
Use ast_free() instead of free(), pointed out by eliel on IRC.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@161350 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_voicemail.c')
-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 333e38a74..47f1a8411 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -10126,7 +10126,7 @@ static char *substitute_escapes(const char *value)
}
result = ast_strdup(str->str);
- free(str);
+ ast_free(str);
return result;
}