From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 4E144401D2 for ; Sun, 12 Nov 2023 15:12:00 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 5C4E768CBF5; Sun, 12 Nov 2023 17:11:58 +0200 (EET) Received: from alphacentauri.ramacher.at (alphacentauri.ramacher.at [195.201.139.148]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 269B868CA1F for ; Sun, 12 Nov 2023 17:11:52 +0200 (EET) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ramacher.at ; s=mail; h=MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To :From:Content-Type; bh=inTs09jOwng9PjedJ2o03mUTgdGpvd5Lyfh9Js4tILQ=; b=BJt6EW yuS2ihBPjfgK7EwGT2/5POB7Dn8RFuFkcjCUuRzFje/I+NlTgqWDa8ApJpOjNceVORftBJuuF+5ha QGiH3cxLHlHoAe9mPXAcmS7ourVb5sL44KV+onicgIYE3q8V3ka48Bu1zfDWr70ZnQtXIxmiy732k JFGi44kJ+Ok=; From: Sebastian Ramacher To: ffmpeg-devel@ffmpeg.org Date: Sun, 12 Nov 2023 16:11:42 +0100 Message-ID: <20231112151144.2307049-2-sramacher@debian.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231112151144.2307049-1-sramacher@debian.org> References: <20231112151144.2307049-1-sramacher@debian.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 1/3] avcodec/fft: Do not uninit never initialized ctx2 X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Sebastian Ramacher Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- 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 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".