2010-05-03 19:28:21 +00:00
|
|
|
Index: png.c
|
|
|
|
===================================================================
|
|
|
|
--- png.c.orig
|
2010-04-04 18:09:22 +00:00
|
|
|
+++ png.c
|
|
|
|
@@ -11,7 +11,7 @@
|
|
|
|
|
|
|
|
#define TITLE_KEYWORD "Title"
|
|
|
|
|
|
|
|
-/* check to see if a file is a png file using png_check_sig() */
|
|
|
|
+/* check to see if a file is a png file using png_sig_cmp() */
|
|
|
|
static int check_png(char *file_name)
|
|
|
|
{
|
|
|
|
ZFILE *zfp;
|
2010-05-03 19:28:21 +00:00
|
|
|
@@ -27,7 +27,7 @@ static int check_png(char *file_name)
|
2010-04-04 18:09:22 +00:00
|
|
|
if (ret != 8)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
- ret = png_check_sig(buf, 8);
|
|
|
|
+ ret = !png_sig_cmp(buf, 0, 8);
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|