mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Clear freed pointer in ffplay.c.
Fixes a crash when audio stream is cycled twice. Originally committed as revision 22026 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
90332debfe
commit
bc77fce6ba
1
ffplay.c
1
ffplay.c
@ -1911,6 +1911,7 @@ static void stream_component_close(VideoState *is, int stream_index)
|
|||||||
packet_queue_end(&is->audioq);
|
packet_queue_end(&is->audioq);
|
||||||
if (is->reformat_ctx)
|
if (is->reformat_ctx)
|
||||||
av_audio_convert_free(is->reformat_ctx);
|
av_audio_convert_free(is->reformat_ctx);
|
||||||
|
is->reformat_ctx = NULL;
|
||||||
break;
|
break;
|
||||||
case CODEC_TYPE_VIDEO:
|
case CODEC_TYPE_VIDEO:
|
||||||
packet_queue_abort(&is->videoq);
|
packet_queue_abort(&is->videoq);
|
||||||
|
Loading…
Reference in New Issue
Block a user