diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-25 15:12:24 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-25 15:12:24 +0200 |
commit | 80eb8e08dd20fd18e841f8c813947cfb8cbbc4e5 (patch) | |
tree | 09dba8231af05f467e8ff87eae0a6b069c575fdf /media | |
parent | b89570e31cfb84449241e363a595540b8810c217 (diff) | |
download | uxp-80eb8e08dd20fd18e841f8c813947cfb8cbbc4e5.tar.gz |
[libpng] Backport an upstream libpng patch.
Diffstat (limited to 'media')
-rw-r--r-- | media/libpng/png.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/media/libpng/png.c b/media/libpng/png.c index e6fe517220..3630b1f734 100644 --- a/media/libpng/png.c +++ b/media/libpng/png.c @@ -4517,8 +4517,7 @@ png_image_free(png_imagep image) if (image != NULL && image->opaque != NULL && image->opaque->error_buf == NULL) { - /* Ignore errors here: */ - (void)png_safe_execute(image, png_image_free_function, image); + png_image_free_function(image); image->opaque = NULL; } } |