dect
/
asterisk
Archived
13
0
Fork 0

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: http://svn.digium.com/svn/asterisk/trunk@14470 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
bweschke 2006-03-23 20:48:08 +00:00
parent 9402c54f97
commit fecbdf1afa
1 changed files with 2 additions and 0 deletions

View File

@ -779,6 +779,8 @@ static void conf_flush(int fd, struct ast_channel *chan)
f = ast_read(chan);
if (f)
ast_frfree(f);
else /* channel was hung up or something else happened */
break;
}
}