mirror of
https://github.com/randy408/libspng
synced 2025-03-28 21:13:20 +00:00
decode: fix invalid error return for 0-length EXIF
This commit is contained in:
parent
ea6ca5bc18
commit
a9ed763896
@ -2691,6 +2691,7 @@ static int read_non_idat_chunks(spng_ctx *ctx)
|
||||
if(!memcmp(chunk.type, type_exif, 4))
|
||||
{
|
||||
if(ctx->file.exif) return SPNG_EDUP_EXIF;
|
||||
if(!chunk.length) return SPNG_EEXIF;
|
||||
|
||||
ctx->file.exif = 1;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user