diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-02-03 11:30:17 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-04 10:00:49 +0000 |
commit | 523d9407d57e9210428b6d962f0ebf48aae55638 (patch) | |
tree | 67f39b560958730815037831b59c57c8c297e00c /libavcodec/libxvidff.c | |
parent | a1b227bb533f173354795124e0b966277c251b56 (diff) | |
download | ffmpeg-523d9407d57e9210428b6d962f0ebf48aae55638.tar.gz |
Remove a few if (p) av_freep(&p) forms
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/libxvidff.c')
-rw-r--r-- | libavcodec/libxvidff.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/libxvidff.c b/libavcodec/libxvidff.c index 771fc2be64..9008b848ca 100644 --- a/libavcodec/libxvidff.c +++ b/libavcodec/libxvidff.c @@ -527,8 +527,7 @@ static av_cold int xvid_encode_close(AVCodecContext *avctx) { xvid_encore(x->encoder_handle, XVID_ENC_DESTROY, NULL, NULL); - if( avctx->extradata != NULL ) - av_freep(&avctx->extradata); + av_freep(&avctx->extradata); if( x->twopassbuffer != NULL ) { av_free(x->twopassbuffer); av_free(x->old_twopassbuffer); |