[FFmpeg-devel] [PATCH 1/3] avcodec/fft: Do not uninit never initialized ctx2

Sebastian Ramacher sramacher at debian.org
Sun Nov 12 17:11:42 EET 2023


---
 libavcodec/avfft.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libavcodec/avfft.c b/libavcodec/avfft.c
index fb635abfff..93203228c2 100644
--- a/libavcodec/avfft.c
+++ b/libavcodec/avfft.c
@@ -76,7 +76,6 @@ av_cold void av_fft_end(FFTContext *s)
     if (s) {
         AVTXWrapper *w = (AVTXWrapper *)s;
         av_tx_uninit(&w->ctx);
-        av_tx_uninit(&w->ctx2);
         av_free(w);
     }
 }
-- 
2.42.0



More information about the ffmpeg-devel mailing list