From e9bbb39e94555f5bc8eb58e74c44dde87e28040a Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Fri, 8 Sep 2023 15:29:17 +0200 Subject: [PATCH] avcodec/truemotion2: Don't check before freeing VLC ff_vlc_free() is of course compatible with freeing a blank VLC. Reviewed-by: Paul B Mahol Signed-off-by: Andreas Rheinhardt --- libavcodec/truemotion2.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavcodec/truemotion2.c b/libavcodec/truemotion2.c index 5527fed958..366d8aefc1 100644 --- a/libavcodec/truemotion2.c +++ b/libavcodec/truemotion2.c @@ -222,8 +222,7 @@ out: static void tm2_free_codes(TM2Codes *code) { av_free(code->recode); - if (code->vlc.table) - ff_vlc_free(&code->vlc); + ff_vlc_free(&code->vlc); } static inline int tm2_get_token(GetBitContext *gb, TM2Codes *code)