summaryrefslogtreecommitdiff
path: root/community/php52/libpng14.patch
blob: 08bb4e1ddafaac41a8bbc67d4d71f03d19080ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- php/php-src/trunk/ext/gd/libgd/gd_png.c	2009/04/01 16:05:17	278124
+++ php/php-src/trunk/ext/gd/libgd/gd_png.c	2010/01/10 02:13:45	293341
@@ -145,7 +145,7 @@
 		return NULL;
 	}
 
-	if (!png_check_sig (sig, 8)) { /* bad signature */
+	if (png_sig_cmp(sig, 0, 8) != 0) { /* bad signature */
 		return NULL;
 	}