diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-03-04 19:14:45 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-04 19:14:48 +0100 |
commit | 634ce8ddad6b2c03d24bce12ba69f9217729d3f5 (patch) | |
tree | 12b6210573546e9bbf8ef7d437020e3c30eeb239 | |
parent | 1c9f2ebdcd073a0f23c32c237182c4c81d91056a (diff) | |
parent | 1dc19729e92a96620000e09eba8e58cb458c9486 (diff) | |
download | ffmpeg-634ce8ddad6b2c03d24bce12ba69f9217729d3f5.tar.gz |
Merge commit '1dc19729e92a96620000e09eba8e58cb458c9486'
* commit '1dc19729e92a96620000e09eba8e58cb458c9486':
rtpdec_asf: Don't free the payload context in the .close function
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/rtpdec_asf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/rtpdec_asf.c b/libavformat/rtpdec_asf.c index 019123e559..12913b4eb0 100644 --- a/libavformat/rtpdec_asf.c +++ b/libavformat/rtpdec_asf.c @@ -289,7 +289,6 @@ static void asfrtp_close_context(PayloadContext *asf) { ffio_free_dyn_buf(&asf->pktbuf); av_freep(&asf->buf); - av_free(asf); } #define RTP_ASF_HANDLER(n, s, t) \ |