Imported from libpng-1.2.36beta01.tar

This commit is contained in:
Glenn Randers-Pehrson
2009-02-28 06:09:50 -06:00
parent 6048b12510
commit 556450a2ff
51 changed files with 235 additions and 185 deletions

View File

@@ -599,7 +599,7 @@ void write_png(char *file_name /* , ... other image information ... */)
*/
if (setjmp(png_jmpbuf(png_ptr)))
{
/* If we get here, we had a problem reading the file */
/* If we get here, we had a problem writing the file */
fclose(fp);
png_destroy_write_struct(&png_ptr, &info_ptr);
return (ERROR);
@@ -694,7 +694,7 @@ void write_png(char *file_name /* , ... other image information ... */)
* write_my_chunk();
* png_write_info(png_ptr, info_ptr);
*
* However, given the level of known- and unknown-chunk support in 1.1.0
* However, given the level of known- and unknown-chunk support in 1.2.0
* and up, this should no longer be necessary.
*/