From 2c526ed41bf81a3c7e0438661fd87d2480221f34 Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Tue, 14 Apr 2026 11:09:33 +1000 Subject: fix(png): IDAT uncompressed size and zlib header skip --- src/common.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/common.c') diff --git a/src/common.c b/src/common.c index b9f7563..9307889 100644 --- a/src/common.c +++ b/src/common.c @@ -1,3 +1,4 @@ +#include #include #include @@ -22,7 +23,7 @@ ff_ctx* ff_init(ff_allocator* allocator) if (!ctx) return NULL; ctx->ff_debug_enabled = FF_DISABLE; - ctx->ff_debug_stream = NULL; + ctx->ff_debug_stream = FF_NULL_STREAM; ctx->allocator = *allocator; -- cgit v1.2.3