diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 17afc5f9b6..a9b3d3d275 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -5259,7 +5259,8 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_ return -1; } - ext = ast_strdupa(ext); + ast_str_set(&tmp, 0, "%s", ext); + ext = ast_str_buffer(tmp); if ((context = strchr(ext, '@'))) { *context++ = '\0'; tmpptr = strchr(context, '&');