Fix multiple free of a frame (bug #6058)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7620 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2005-12-25 01:27:47 +00:00
parent eeb58dcd81
commit 96b3a24637

View File

@@ -2264,10 +2264,10 @@ static void *recordthread(void *args)
ast_frfree(cnf->transframe[x]);
cnf->transframe[x] = NULL;
}
if (cnf->origframe)
ast_frfree(cnf->origframe);
cnf->origframe = f;
}
if (cnf->origframe)
ast_frfree(cnf->origframe);
cnf->origframe = f;
ast_mutex_unlock(&cnf->listenlock);
if (s)
res = ast_writestream(s, f);