libpng/libpng-CVE-2019-7317.patch

15 lines
413 B
Diff
Raw Normal View History

2019-02-08 12:17:25 +00:00
diff --git a/png.c b/png.c
index a25afeb..ff9da3f 100644
--- a/png.c
+++ b/png.c
@@ -4594,8 +4594,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;
}
}