From: David Vossel Date: Mon, 10 May 2010 18:57:44 +0000 (+0000) Subject: Merged revisions 262236 via svnmerge from X-Git-Tag: 1.6.0.28-rc2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba3b97d5e0b753e6950cd7305624db8d7685615e;p=thirdparty%2Fasterisk.git Merged revisions 262236 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r262236 | dvossel | 2010-05-10 13:36:10 -0500 (Mon, 10 May 2010) | 11 lines fixes crash in chan_console There is a race condition between console_hangup() and start_stream(). It is possible for console_hangup() to be called and then the stream thread to begin after the hangup. To avoid this a check in start_stream() to make sure the pvt-owner still exists while the pvt lock is held is made. If the owner is gone that means the channel hung up and start_stream should be aborted. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@262239 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_console.c b/channels/chan_console.c index 935c081edf..3894ca3c70 100644 --- a/channels/chan_console.c +++ b/channels/chan_console.c @@ -275,6 +275,10 @@ static void *stream_monitor(void *data) res = Pa_ReadStream(pvt->stream, buf, sizeof(buf) / sizeof(int16_t)); pthread_testcancel(); + if (!pvt->owner) { + return NULL; + } + if (res == paNoError) ast_queue_frame(pvt->owner, &f); } @@ -350,7 +354,10 @@ static int start_stream(struct console_pvt *pvt) console_pvt_lock(pvt); - if (pvt->streamstate) + /* It is possible for console_hangup to be called before the + * stream is started, if this is the case pvt->owner will be NULL + * and start_stream should be aborted. */ + if (pvt->streamstate || !pvt->owner) goto return_unlock; pvt->streamstate = 1;