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 81F85498F2 for ; Thu, 23 May 2024 01:18:27 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 9772368D47E; Thu, 23 May 2024 04:18:10 +0300 (EEST) Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id C1B1768D1BC for ; Thu, 23 May 2024 04:18:01 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 251C460003 for ; Thu, 23 May 2024 01:18:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1716427081; 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=Cm+1CZn0nmr9lbbn1AGaoDPjAJSXPQI7tRyK7wQvGiY=; b=fK50c0Q3MqYhVC4WsiRh44cw69wU8cXOnB0d6J0YuRmmiATnmw1Nzek78PZLlbfonb+mJy XTVsvWX8LvUoglpm3ggDwVFAJnt1thenI59D8JVUHzGVvnpl5fWC/5EK8ifzRs3XSbZ5qQ FNdTCL4B+FWWzNWLxYZ64jfUH+RmSbVysKYzHaSIxlYWop7VsOq3cytTA8ZLJbHzfxaI6I 7fTsX2/HIiMeUWF5/1ZcDlmnf+TDHiRzBMCSUd1A/tW+3Rt0GKQC94bUrfcnEbHr0EM7th LQotqE/0Oso0VwEV3sCGAKJV/LDsqfiFBh4WBHNqoWR0jwI9fL7gLRxFyvCyKg== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Thu, 23 May 2024 03:17:54 +0200 Message-ID: <20240523011758.2434580-3-michael@niedermayer.cc> X-Mailer: git-send-email 2.45.1 In-Reply-To: <20240523011758.2434580-1-michael@niedermayer.cc> References: <20240523011758.2434580-1-michael@niedermayer.cc> MIME-Version: 1.0 X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 3/7] avformat/ape: Use 64bit for final frame size 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: CID1505963 Unintentional integer overflow Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer --- libavformat/ape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/ape.c b/libavformat/ape.c index c0e3e9f4fe6..f86ca5e894c 100644 --- a/libavformat/ape.c +++ b/libavformat/ape.c @@ -292,7 +292,7 @@ static int ape_read_header(AVFormatContext * s) final_size -= final_size & 3; } if (file_size <= 0 || final_size <= 0) - final_size = ape->finalframeblocks * 8; + final_size = ape->finalframeblocks * 8LL; ape->frames[ape->totalframes - 1].size = final_size; for (i = 0; i < ape->totalframes; i++) { -- 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".