eed7c62887
All fixes by yours truly.
25 lines
637 B
Plaintext
25 lines
637 B
Plaintext
$OpenBSD: patch-src_image_c,v 1.1 2011/07/08 20:38:01 naddy Exp $
|
|
|
|
Fix build with png-1.5.
|
|
|
|
--- src/image.c.orig Tue Jul 5 21:14:44 2011
|
|
+++ src/image.c Tue Jul 5 21:16:27 2011
|
|
@@ -6427,7 +6427,7 @@ my_png_error (png_ptr, msg)
|
|
{
|
|
xassert (png_ptr != NULL);
|
|
image_error ("PNG error: %s", build_string (msg), Qnil);
|
|
- longjmp (png_ptr->jmpbuf, 1);
|
|
+ png_longjmp (png_ptr, 1);
|
|
}
|
|
|
|
|
|
@@ -6603,7 +6603,7 @@ png_load (f, img)
|
|
|
|
/* Set error jump-back. We come back here when the PNG library
|
|
detects an error. */
|
|
- if (setjmp (png_ptr->jmpbuf))
|
|
+ if (setjmp (png_jmpbuf(png_ptr)))
|
|
{
|
|
error:
|
|
if (png_ptr)
|