mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
Memory leak of a list, if call recording was abandoned
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@57648 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3626,6 +3626,7 @@ static int forward_message(struct ast_channel *chan, char *context, char *dir, i
|
||||
vmtmp = vmtmp->next;
|
||||
free_user(vmfree);
|
||||
}
|
||||
extensions = NULL;
|
||||
if (saved_messages > 0) {
|
||||
/* give confirmation that the message was saved */
|
||||
/* commented out since we can't forward batches yet
|
||||
@@ -3639,6 +3640,13 @@ static int forward_message(struct ast_channel *chan, char *context, char *dir, i
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* If anything failed above, we still have this list to free */
|
||||
while (extensions) {
|
||||
vmfree = extensions;
|
||||
extensions = extensions->next;
|
||||
free_user(vmfree);
|
||||
}
|
||||
return res ? res : cmd;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user