summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-05-25 15:12:24 +0200
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-05-25 22:15:16 +0200
commit8c159f3d42b374c50476832bf84438e8ae56db4e (patch)
tree7fe8b621d7dcc9079098758c93cfdaa836bad3f6 /media
parent1692f52a5337c21c276ac1e54bbacc2b35ac4bbc (diff)
downloadUXP-8c159f3d42b374c50476832bf84438e8ae56db4e.tar
UXP-8c159f3d42b374c50476832bf84438e8ae56db4e.tar.gz
UXP-8c159f3d42b374c50476832bf84438e8ae56db4e.tar.lz
UXP-8c159f3d42b374c50476832bf84438e8ae56db4e.tar.xz
UXP-8c159f3d42b374c50476832bf84438e8ae56db4e.zip
[libpng] Backport an upstream libpng patch.
Diffstat (limited to 'media')
-rw-r--r--media/libpng/png.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/media/libpng/png.c b/media/libpng/png.c
index e6fe51722..3630b1f73 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;
}
}