SHA256
1
0
forked from pool/ffmpeg-4

add missing closing brace to ffmpeg-4-CVE-2025-7700.patch #24

Manually merged
jengelh merged 1 commits from :master into master 2025-10-08 17:05:45 +02:00
2 changed files with 7 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ Index: ffmpeg-4.4.6/libavcodec/alsdec.c
av_log(avctx, AV_LOG_ERROR, "Allocating buffer memory failed.\n");
ret = AVERROR(ENOMEM);
goto fail;
@@ -2128,6 +2128,10 @@ static av_cold int decode_init(AVCodecCo
@@ -2128,6 +2128,11 @@ static av_cold int decode_init(AVCodecCo
for (c = 0; c < avctx->channels; ++c) {
ctx->raw_mantissa[c] = av_mallocz_array(ctx->cur_frame_length, sizeof(**ctx->raw_mantissa));
@@ -34,6 +34,7 @@ Index: ffmpeg-4.4.6/libavcodec/alsdec.c
+ av_log(avctx, AV_LOG_ERROR, "Allocating buffer memory failed.\n");
+ ret = AVERROR(ENOMEM);
+ goto fail;
+ }
}
}

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 7 12:34:56 UTC 2025 - olaf@aepfle.de
- add missing closing brace to ffmpeg-4-CVE-2025-7700.patch
-------------------------------------------------------------------
Mon Sep 29 07:25:31 UTC 2025 - Jan Engelhardt <jengelh@inai.de>