1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Do not free the priv_data field of AVStream on close (it is already

freed by av_close_input_stream())

Originally committed as revision 14006 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Luca Abeni 2008-06-27 11:55:25 +00:00
parent 44369b45eb
commit 6872368355

View File

@ -842,7 +842,6 @@ static void rtsp_close_streams(RTSPState *rt)
if (rtsp_st->dynamic_handler && rtsp_st->dynamic_protocol_context)
rtsp_st->dynamic_handler->close(rtsp_st->dynamic_protocol_context);
}
av_free(rtsp_st);
}
av_free(rt->rtsp_streams);
}