diff --git a/libpng-manual.txt b/libpng-manual.txt index 27a70f121607c97414b5d65a1467a33fc58a1d9f..aad2709108bdefbe909f44613c5a3d24f6df372d 100644 --- a/libpng-manual.txt +++ b/libpng-manual.txt @@ -688,8 +688,9 @@ where 0x7fffffffL means unlimited. You can retrieve this limit with chunk_cache_max = png_get_chunk_cache_max(png_ptr); Libpng imposes a limit of 8 Megabytes (8,000,000 bytes) on the amount of -memory that a compressed chunk other than IDAT can occupy, when decompressed. -You can change this limit with +memory that any chunk other than IDAT can occupy, originally or when +decompressed (prior to libpng-1.6.32 the limit was only applied to compressed +chunks after decompression). You can change this limit with png_set_chunk_malloc_max(png_ptr, user_chunk_malloc_max); diff --git a/libpng.3 b/libpng.3 index 5c30ded1ff1edc0dfd534accced80471aa8812c0..af637da61eca2588061dc1927bf858548bb88fe2 100644 --- a/libpng.3 +++ b/libpng.3 @@ -1202,8 +1202,9 @@ where 0x7fffffffL means unlimited. You can retrieve this limit with chunk_cache_max = png_get_chunk_cache_max(png_ptr); Libpng imposes a limit of 8 Megabytes (8,000,000 bytes) on the amount of -memory that a compressed chunk other than IDAT can occupy, when decompressed. -You can change this limit with +memory that any chunk other than IDAT can occupy, originally or when +decompressed (prior to libpng-1.6.32 the limit was only applied to compressed +chunks after decompression). You can change this limit with png_set_chunk_malloc_max(png_ptr, user_chunk_malloc_max);