summaryrefslogtreecommitdiff
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
parent1692f52a5337c21c276ac1e54bbacc2b35ac4bbc (diff)
downloaduxp-8c159f3d42b374c50476832bf84438e8ae56db4e.tar.gz
[libpng] Backport an upstream libpng patch.
-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 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;
}
}