blob: 59cf321817575b4a16eb6e39196f9e8ddcb9b9d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- texk/dvipdfm/thumbnail.c.orig 2002-12-25 18:51:16.000000000 +0100
+++ texk/dvipdfm/thumbnail.c 2010-03-30 04:44:51.000000000 +0200
@@ -79,7 +79,7 @@
}
if (fread (sigbytes, 1, sizeof(sigbytes), thumb_file) !=
sizeof(sigbytes) ||
- (!png_check_sig (sigbytes, sizeof(sigbytes)))) {
+ (png_sig_cmp (sigbytes, 0, sizeof(sigbytes)))) {
fprintf (stderr, "\nThumbnail not a png file! Skipping\n");
return NULL;
}
|