aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-05 16:04:36 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-05 16:04:36 +0000
commitac33b629e0963a3c8e94139efcaabbe5bdf7d705 (patch)
tree26d7251af557576253e3f946a7d6abc8ad07cb08 /apps/app_voicemail.c
parent3f42e414e34f2793033572b392bd86b53df948ce (diff)
Use ast_free() instead of free(), pointed out by eliel on IRC.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@161350 f38db490-d61c-443f-a65b-d21fe96a405b
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;
}