]> git.pld-linux.org Git - packages/plotutils.git/blame - plotutils-libpng15.patch
- check-files cleanup
[packages/plotutils.git] / plotutils-libpng15.patch
CommitLineData
5263b1d1
AG
1--- plotutils-2.6/libplot/z_write.c~ 2008-07-16 02:54:10.000000000 +0200
2+++ plotutils-2.6/libplot/z_write.c 2012-02-12 14:20:18.788246962 +0100
3@@ -164,7 +164,7 @@
4 }
5
6 /* cleanup after libpng errors (error handler does a longjmp) */
7- if (setjmp (png_ptr->jmpbuf))
8+ if (setjmp (png_jmpbuf(png_ptr)))
9 {
10 png_destroy_write_struct (&png_ptr, (png_info **)NULL);
11 return -1;
12@@ -444,7 +444,7 @@
13 #endif
14 }
15
16- longjmp (png_ptr->jmpbuf, 1);
17+ longjmp (png_jmpbuf(png_ptr), 1);
18 }
19
20 static void
21@@ -515,7 +515,7 @@
22 #endif
23 }
24
25- longjmp (png_ptr->jmpbuf, 1);
26+ longjmp (png_jmpbuf(png_ptr), 1);
27 }
28
29 static void
This page took 0.080061 seconds and 4 git commands to generate.