Searched refs:expanded_size (Results 1 – 1 of 1) sorted by relevance
351 png_size_t expanded_size = png_inflate(png_ptr, in png_decompress_chunk() local361 (prefix_size + expanded_size >= png_ptr->user_chunk_malloc_max - 1)) in png_decompress_chunk()365 prefix_size + expanded_size >= PNG_USER_CHUNK_MALLOC_MAX - 1) in png_decompress_chunk()379 if (expanded_size > 0) in png_decompress_chunk()386 if (prefix_size + expanded_size > prefix_size && in png_decompress_chunk()387 prefix_size + expanded_size < 0xffffffffU) in png_decompress_chunk()389 text = png_malloc_warn(png_ptr, prefix_size + expanded_size + 1); in png_decompress_chunk()398 (png_bytep)(text + prefix_size), expanded_size); in png_decompress_chunk()399 text[prefix_size + expanded_size] = 0; /* just in case */ in png_decompress_chunk()401 if (new_size == expanded_size) in png_decompress_chunk()[all …]