mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-15 17:27:02 +00:00
let's use the proper variable here, instead of segfaulting (don't know how this worked for anyone at all)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28833 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2236,7 +2236,7 @@ static int has_voicemail(const char *mailbox, const char *folder)
|
||||
char tmp[256], *tmp2 = tmp, *mbox, *context;
|
||||
ast_copy_string(tmp, mailbox, sizeof(tmp));
|
||||
while ((mbox = strsep(&tmp2, ","))) {
|
||||
if ((context = strchr(tmp2, '@')))
|
||||
if ((context = strchr(mbox, '@')))
|
||||
*context++ = '\0';
|
||||
else
|
||||
context = "default";
|
||||
|
Reference in New Issue
Block a user