summaryrefslogtreecommitdiff
path: root/gs/libpng/pngrio.c
diff options
context:
space:
mode:
Diffstat (limited to 'gs/libpng/pngrio.c')
-rw-r--r--gs/libpng/pngrio.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/gs/libpng/pngrio.c b/gs/libpng/pngrio.c
index 6978682c7..9ce073794 100644
--- a/gs/libpng/pngrio.c
+++ b/gs/libpng/pngrio.c
@@ -1,8 +1,8 @@
/* pngrio.c - functions for data input
*
- * Last changed in libpng 1.2.43 [February 25, 2010]
- * Copyright (c) 1998-2010 Glenn Randers-Pehrson
+ * Last changed in libpng 1.2.41 [December 3, 2009]
+ * Copyright (c) 1998-2009 Glenn Randers-Pehrson
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
*
@@ -92,8 +92,7 @@ png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
if ((png_bytep)n_data == data)
{
#ifdef _WIN32_WCE
- if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check,
- NULL) )
+ if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
check = 0;
#else
check = fread(n_data, 1, length, io_ptr);