This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 95d5815003258be03929e0fcbd6d5a504c5ccd2b Author: Kacper Michajłow <[email protected]> AuthorDate: Mon Jul 6 12:50:59 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Tue Jul 21 18:48:57 2026 +0000 tools/target_enc_fuzzer: mark flags64 as unused Still read, to not change byte stream offsets. Technically we could skip those bytes, but this way it's clear for te future that we can use those flags for anything needed. Signed-off-by: Kacper Michajłow <[email protected]> --- tools/target_enc_fuzzer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/target_enc_fuzzer.c b/tools/target_enc_fuzzer.c index 059d783071..543770eaae 100644 --- a/tools/target_enc_fuzzer.c +++ b/tools/target_enc_fuzzer.c @@ -112,7 +112,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { if (size > 1024) { GetByteContext gbc; int flags; - int64_t flags64; + av_unused int64_t flags64; size -= 1024; bytestream2_init(&gbc, data + size, 1024); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
