[libpng16] Merged pngrio.c, pngtrans.c, pngwio.c, and pngerror.c

with libpng-1.7.0
This commit is contained in:
Glenn Randers-Pehrson
2013-12-28 12:52:59 -06:00
parent e51ba2eff4
commit 88ecac68be
6 changed files with 18 additions and 5 deletions

View File

@@ -761,7 +761,12 @@ png_longjmp,(png_const_structrp png_ptr, int val),PNG_NORETURN)
png_ptr->longjmp_fn(*png_ptr->jmp_buf_ptr, val);
#endif
/* Here if not setjmp support or if png_ptr is null. */
/* If control reaches this point, png_longjmp() must not return. The only
* choice is to terminate the whole process (or maybe the thread); to do
* this the ANSI-C abort() function is used unless a different method is
* implemented by overriding the default configuration setting for
* PNG_ABORT().
*/
PNG_ABORT();
}