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 15:12:24 +0200
commit80eb8e08dd20fd18e841f8c813947cfb8cbbc4e5 (patch)
tree09dba8231af05f467e8ff87eae0a6b069c575fdf /media
parentb89570e31cfb84449241e363a595540b8810c217 (diff)
downloadUXP-80eb8e08dd20fd18e841f8c813947cfb8cbbc4e5.tar
UXP-80eb8e08dd20fd18e841f8c813947cfb8cbbc4e5.tar.gz
UXP-80eb8e08dd20fd18e841f8c813947cfb8cbbc4e5.tar.lz
UXP-80eb8e08dd20fd18e841f8c813947cfb8cbbc4e5.tar.xz
UXP-80eb8e08dd20fd18e841f8c813947cfb8cbbc4e5.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;
}
}