summaryrefslogtreecommitdiffstats
path: root/graphics/py-paint/files/patch-image.c
blob: 4b3f9065e4c01071673fc76a623da3c11d4cb619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- image.c.orig	2004-02-16 10:57:56.000000000 +0100
+++ image.c	2012-05-05 07:40:54.000000000 +0200
@@ -129,7 +129,7 @@
 	set_error(PyExc_RuntimeError, "could not create info struct");
 	return NULL;
     }
-    if (setjmp(png_ptr->jmpbuf)) {
+    if (setjmp(png_jmpbuf(png_ptr))) {
 	fclose(fp);
 	png_destroy_write_struct(&png_ptr, (png_infopp)NULL);
 	set_error(PyExc_RuntimeError, "error building image");
@@ -233,7 +233,7 @@
 	set_error(PyExc_RuntimeError, "could not create info struct");
 	goto error;
     }
-    if (setjmp(png_ptr->jmpbuf)) {
+    if (setjmp(png_jmpbuf(png_ptr))) {
 	set_error(PyExc_RuntimeError, "error building image");
 	goto error;
     }
OpenPOWER on IntegriCloud