summaryrefslogtreecommitdiff
path: root/graphics/imlib2/files
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/imlib2/files')
-rw-r--r--graphics/imlib2/files/patch-loader_png.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/imlib2/files/patch-loader_png.c b/graphics/imlib2/files/patch-loader_png.c
new file mode 100644
index 000000000000..124961969439
--- /dev/null
+++ b/graphics/imlib2/files/patch-loader_png.c
@@ -0,0 +1,11 @@
+--- src/modules/loaders/loader_png.c.orig 2007-08-25 04:33:10.000000000 +0200
++++ src/modules/loaders/loader_png.c 2010-03-28 16:18:53.000000000 +0200
+@@ -38,7 +38,7 @@
+
+ /* if we haven't read the header before, set the header data */
+ fread(buf, 1, PNG_BYTES_TO_CHECK, f);
+- if (!png_check_sig(buf, PNG_BYTES_TO_CHECK))
++ if (png_check_sig(buf, 0, PNG_BYTES_TO_CHECK))
+ {
+ fclose(f);
+ return 0;