dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 154066 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r154066 | tilghman | 2008-11-03 16:27:10 -0600 (Mon, 03 Nov 2008) | 5 lines
  
  Attempting to expunge a mailbox when the mailstream is NULL will crash Asterisk.
  (Closes issue #13829)
  Reported by: jaroth
  Patch by: me (modified jaroth's patch)
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@154072 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
tilghman 2008-11-03 22:28:12 +00:00
parent e4073fa6f6
commit c5aaf4afdc
1 changed files with 1 additions and 1 deletions

View File

@ -9296,7 +9296,7 @@ out:
#ifdef IMAP_STORAGE
/* expunge message - use UID Expunge if supported on IMAP server*/
ast_debug(3, "*** Checking if we can expunge, deleted set to %d, expungeonhangup set to %d\n",deleted,expungeonhangup);
if (vmu && deleted == 1 && expungeonhangup == 1) {
if (vmu && deleted == 1 && expungeonhangup == 1 && vms.mailstream != NULL) {
#ifdef HAVE_IMAP_TK2006
if (LEVELUIDPLUS (vms.mailstream)) {
mail_expunge_full(vms.mailstream,NIL,EX_UID);