Skip to content
Snippets Groups Projects
Commit fb8ff8ed authored by BJ Weschke's avatar BJ Weschke
Browse files

Merged revisions 14467 via svnmerge from

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

........
r14467 | bweschke | 2006-03-23 14:43:05 -0600 (Thu, 23 Mar 2006) | 3 lines

 Bug #5884 - fix a possible race state in app_meetme when a channel has gone away and we are reading continuously for more frames. (mneuhauser)


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@14470 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 4c1d49f5
No related branches found
No related tags found
No related merge requests found
...@@ -779,6 +779,8 @@ static void conf_flush(int fd, struct ast_channel *chan) ...@@ -779,6 +779,8 @@ static void conf_flush(int fd, struct ast_channel *chan)
f = ast_read(chan); f = ast_read(chan);
if (f) if (f)
ast_frfree(f); ast_frfree(f);
else /* channel was hung up or something else happened */
break;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment