diff options
author | Luca Abeni <lucabe72@email.it> | 2008-06-27 11:55:25 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2008-06-27 11:55:25 +0000 |
commit | 6872368355fd5454df87ab79c9faf3063c5189b4 (patch) | |
tree | 5deff8e3d1b4084de5d5084cfcbae1ad480b9eaa | |
parent | 44369b45eb49fc64882208848df45925118f5278 (diff) | |
download | ffmpeg-6872368355fd5454df87ab79c9faf3063c5189b4.tar.gz |
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
-rw-r--r-- | libavformat/rtsp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index b0f63967ac..79fa4e19ad 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -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); } |