mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Using a freed frame causes crashes (closes issue #9317)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@75529 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3019,7 +3019,7 @@ static void *recordthread(void *args)
|
||||
}
|
||||
if (cnf->origframe)
|
||||
ast_frfree(cnf->origframe);
|
||||
cnf->origframe = f;
|
||||
cnf->origframe = ast_frdup(f);
|
||||
ast_mutex_unlock(&cnf->listenlock);
|
||||
if (s)
|
||||
res = ast_writestream(s, f);
|
||||
|
Reference in New Issue
Block a user