From: michaelni via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> To: ffmpeg-devel@ffmpeg.org Cc: michaelni <code@ffmpeg.org> Subject: [FFmpeg-devel] [PATCH] ff-tmp-exif-clear (PR #20513) Date: Sat, 13 Sep 2025 12:25:03 -0000 Message-ID: <175776630379.25.17912284374158106438@463a07221176> (raw) PR #20513 opened by michaelni URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20513 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20513.patch avcodec/exif: Use av_fast_mallocz() in av_exif_clone_ifd() using fast realloc leaves the entries uninitialized and frees garbage pointers on errors >From f4cfb976540b4eaed69873b6168ebc331b8923b2 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer <michael@niedermayer.cc> Date: Sat, 13 Sep 2025 13:53:53 +0200 Subject: [PATCH 1/2] avcodec/exif: Do not leave uninitialized pointers on errors in exif_clone_entry() No testcase, but this looks like it could free garbage pointers Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> --- libavcodec/exif.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/exif.c b/libavcodec/exif.c index f9ad3e1bdb..3e86833986 100644 --- a/libavcodec/exif.c +++ b/libavcodec/exif.c @@ -953,6 +953,7 @@ static int exif_clone_entry(AVExifEntry *dst, const AVExifEntry *src) dst->count = src->count; dst->id = src->id; dst->type = src->type; + memset(&dst->value, 0, sizeof(dst->value)); dst->ifd_offset = src->ifd_offset; if (src->ifd_lead) { -- 2.49.1 >From 2e8cc7b86019fb32bdf0b23a138901e6f65238f5 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer <michael@niedermayer.cc> Date: Sat, 13 Sep 2025 14:00:55 +0200 Subject: [PATCH 2/2] avcodec/exif: Use av_fast_mallocz() in av_exif_clone_ifd() using fast realloc leaves the entries uninitialized and frees garbage pointers on errors Fixes: bug_triggering_file Found-by: *2ourc3, 5pider Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> --- libavcodec/exif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/exif.c b/libavcodec/exif.c index 3e86833986..cd6c0c3771 100644 --- a/libavcodec/exif.c +++ b/libavcodec/exif.c @@ -1152,7 +1152,7 @@ AVExifMetadata *av_exif_clone_ifd(const AVExifMetadata *ifd) size_t required_size; if (av_size_mult(ret->count, sizeof(*ret->entries), &required_size) < 0) goto fail; - ret->entries = av_fast_realloc(NULL, &ret->size, required_size); + av_fast_mallocz(&ret->entries, &ret->size, required_size); if (!ret->entries) goto fail; } -- 2.49.1 _______________________________________________ ffmpeg-devel mailing list -- ffmpeg-devel@ffmpeg.org To unsubscribe send an email to ffmpeg-devel-leave@ffmpeg.org
reply other threads:[~2025-09-13 12:25 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=175776630379.25.17912284374158106438@463a07221176 \ --to=ffmpeg-devel@ffmpeg.org \ --cc=code@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git