Fixed bug reporting, updated Changes.
authorArnar Mar Hrafnkelsson <addi@cpan.org>
Fri, 4 May 2001 16:57:37 +0000 (16:57 +0000)
committerArnar Mar Hrafnkelsson <addi@cpan.org>
Fri, 4 May 2001 16:57:37 +0000 (16:57 +0000)
Changes
README
png.c

diff --git a/Changes b/Changes
index 6556d1ab7d6b6cd6a88467f3f713ef21c3cba5fa..ae73e42dd84d003f4ac858933f37d2ab8821ca7f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -379,7 +379,9 @@ Revision history for Perl extension Imager.
          Imager.xs, Imager.pm
         - each of the image formats now have their own test file,
           extracted from t10formats.t, usually with som extra tests
-  - Added flip() and docs to Imager.pm and i_flipxy to image.c.
+        - Added flip() and docs to Imager.pm and i_flipxy to image.c.
+          Added testcases too.
+       - Fixed an overflow bug in png.c
 
 ~~~~~~~~~~~~~^ ^ ^~~~~~~~~~~~~~
 
diff --git a/README b/README
index 8fde21cf121f68ae17c54de34223d672214b0b3c..eb504c9dd96a93089189f7f0923764017d648c4b 100644 (file)
--- a/README
+++ b/README
@@ -198,6 +198,7 @@ Thanks go to:
   Tony Cook           ( TonyC )
   Claes Jacobson      ( Claes )
   Philip Gwyn         ( Leolo )
+  Michael Slade       ( Micksa )
   Brad Murray         ( HalfJack )
   Nicholas Dronen     ( Veblen )
   Michael G Schwern   ( Schwern )
diff --git a/png.c b/png.c
index 3ef0e9d868f5fa4cfbdf281d72e0070f53de5f34..e00ef614912b5004cefddf5adb4bd1af49544d9c 100644 (file)
--- a/png.c
+++ b/png.c
@@ -244,8 +244,6 @@ i_readpng(int fd) {
     }
   /* read rest of file, and get additional chunks in info_ptr - REQUIRED */
 
-  mm_log((1,"FOO!\n"));
-
   png_read_end(png_ptr, info_ptr); 
   /* clean up after the read, and free any memory allocated - REQUIRED */
   png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);