You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/simage/files/simage-1.7.0-libpng15.patch

13 lines
572 B

diff -ruN simage-1.7.0/src/simage_png.c new/src/simage_png.c
--- simage-1.7.0/src/simage_png.c 2010-02-26 16:47:31.000000000 +0100
+++ new/src/simage_png.c 2013-06-06 22:34:23.537331509 +0200
@@ -323,7 +323,7 @@
/* Set error handling. REQUIRED if you aren't supplying your own
* error hadnling functions in the png_create_write_struct() call.
*/
- if (setjmp(png_ptr->jmpbuf)) {
+ if (setjmp(png_jmpbuf(png_ptr))) {
/* If we get here, we had a problem reading the file */
fclose(fp);
png_destroy_write_struct(&png_ptr, (png_infopp)info_ptr);