[FFmpeg-cvslog] avformat/ape: Use 64bit for final frame size
Michael Niedermayer
git at videolan.org
Sat Jun 1 19:02:16 EEST 2024
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Thu May 23 01:51:53 2024 +0200| [a2b8d03347930c051358fcbbdc557e57e157d9c9] | committer: Michael Niedermayer
avformat/ape: Use 64bit for final frame size
Fixes: CID1505963 Unintentional integer overflow
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a2b8d03347930c051358fcbbdc557e57e157d9c9
---
libavformat/ape.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/ape.c b/libavformat/ape.c
index c0e3e9f4fe..f86ca5e894 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++) {
More information about the ffmpeg-cvslog
mailing list