[master] Imported from libpng-1.4.1beta04.tar

This commit is contained in:
Glenn Randers-Pehrson
2010-01-22 19:30:23 -06:00
parent fb3a1da4bb
commit 86f6c04d84
12 changed files with 152 additions and 38 deletions

View File

@@ -895,8 +895,14 @@ png_get_user_height_max (png_structp png_ptr)
png_uint_32 PNGAPI
png_get_chunk_cache_max (png_structp png_ptr)
{
return (png_ptr? png_ptr->user_chunk_cache_max? 0x7fffffffL :
png_ptr->user_chunk_cache_max - 1 : 0);
return (png_ptr? (png_ptr->user_chunk_cache_max? 0x7fffffffL :
png_ptr->user_chunk_cache_max - 1) : 0);
}
/* This function was added to libpng 1.4.1 */
png_uint_32 PNGAPI
png_get_chunk_malloc_max (png_structp png_ptr)
{
return (png_ptr? png_ptr->user_chunk_cache_max : 0);
}
#endif /* ?PNG_SET_USER_LIMITS_SUPPORTED */