diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-20 17:22:56 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-20 17:22:56 +0000 |
commit | ade8d8b939ccdb3d0c02fed59bdce2f355daa177 (patch) | |
tree | d27ef632a7cb7c94c81c5aaa76c39cb5e17ebf05 /libavformat/asf.c | |
parent | ccafd47251a83cab01dcde42dc09db425c80e69a (diff) | |
download | ffmpeg-ade8d8b939ccdb3d0c02fed59bdce2f355daa177.tar.gz |
uniformize AVStream->priv_data freeing in av_close_input_stream
Originally committed as revision 13838 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r-- | libavformat/asf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c index df2003ad0b..faa0d6916a 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -925,7 +925,6 @@ static int asf_read_close(AVFormatContext *s) asf_reset_header(s); for(i=0;i<s->nb_streams;i++) { AVStream *st = s->streams[i]; - av_free(st->priv_data); av_free(st->codec->palctrl); } return 0; |