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 74DEC4B03E for ; Sun, 26 May 2024 23:53:02 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 746DC68D52C; Mon, 27 May 2024 02:52:42 +0300 (EEST) Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 29B9A68D4F4 for ; Mon, 27 May 2024 02:52:34 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 5BE61C0002 for ; Sun, 26 May 2024 23:52:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1716767553; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=dQ16opqPu4oTgETho0eeqFBx/xT3IzQX5JKajRd0Q/w=; b=LH3CDO7mqULUcJiTlJ0NY/vyjaDj6qZDLeYEpn9AhEUU1E3a5oGlZKBA1+CmLmjla/GRbj 9i0pDFeNeSXn6/9ErW0t2j+oCMKR4fqwqC3Pz3ZDe2faBuByJI4QbAQ2S83LGU8eXmg71q R8mlMXxLBvW553WiVpmlTJPcsGwMMQVycXsSCOepqqEWLjSTatMNg3ITzWZlnd0q4yXKmj ORfRNEOVth7NwJzXUNT5Izfi/Wn+ApZQSs4tYIwbzSeUSpo/yB4ywlEq3oYxkNnYfIG9q1 NvCmVqXcmq0iiNLxPtQRTSRQ61UlYLlbCWFmoOImS/pplXtfa2hvYHtm/C4T+A== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Mon, 27 May 2024 01:52:15 +0200 Message-ID: <20240526235230.2876318-3-michael@niedermayer.cc> X-Mailer: git-send-email 2.45.1 In-Reply-To: <20240526235230.2876318-1-michael@niedermayer.cc> References: <20240526235230.2876318-1-michael@niedermayer.cc> MIME-Version: 1.0 X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 03/17] avcodec/dxva2: initialize validate 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 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: Fixes: CID1591915 Uninitialized scalar variable Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer --- libavcodec/dxva2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/dxva2.c b/libavcodec/dxva2.c index 550369ba51f..1a33c8bbac7 100644 --- a/libavcodec/dxva2.c +++ b/libavcodec/dxva2.c @@ -269,7 +269,7 @@ static int dxva_get_decoder_guid(AVCodecContext *avctx, void *service, void *sur *decoder_guid = ff_GUID_NULL; for (i = 0; dxva_modes[i].guid; i++) { const dxva_mode *mode = &dxva_modes[i]; - int validate; + int validate = 0; if (!dxva_check_codec_compatibility(avctx, mode)) continue; -- 2.45.1 _______________________________________________ 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".