| Index: third_party/libpng/pngpread.c
|
| diff --git a/third_party/libpng/pngpread.c b/third_party/libpng/pngpread.c
|
| index 9746c7a06ba7e07425d26a7ed64b6f906db27227..52f41a20c51186f1c7e1fe1b94b902afd66b998c 100644
|
| --- a/third_party/libpng/pngpread.c
|
| +++ b/third_party/libpng/pngpread.c
|
| @@ -1,14 +1,18 @@
|
|
|
| /* pngpread.c - read a png file in push mode
|
| *
|
| - * Last changed in libpng 1.2.37 [June 4, 2009]
|
| - * For conditions of distribution and use, see copyright notice in png.h
|
| - * Copyright (c) 1998-2009 Glenn Randers-Pehrson
|
| + * Last changed in libpng 1.2.43 [February 25, 2010]
|
| + * Copyright (c) 1998-2010 Glenn Randers-Pehrson
|
| * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
|
| * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
|
| + *
|
| + * This code is released under the libpng license.
|
| + * For conditions of distribution and use, see the disclaimer
|
| + * and license in png.h
|
| */
|
|
|
| #define PNG_INTERNAL
|
| +#define PNG_NO_PEDANTIC_WARNINGS
|
| #include "png.h"
|
| #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
|
|
|
| @@ -67,7 +71,7 @@ png_process_some_data(png_structp png_ptr, png_infop info_ptr)
|
| break;
|
| }
|
|
|
| -#if defined(PNG_READ_tEXt_SUPPORTED)
|
| +#ifdef PNG_READ_tEXt_SUPPORTED
|
| case PNG_READ_tEXt_MODE:
|
| {
|
| png_push_read_tEXt(png_ptr, info_ptr);
|
| @@ -75,7 +79,7 @@ png_process_some_data(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_zTXt_SUPPORTED)
|
| +#ifdef PNG_READ_zTXt_SUPPORTED
|
| case PNG_READ_zTXt_MODE:
|
| {
|
| png_push_read_zTXt(png_ptr, info_ptr);
|
| @@ -83,7 +87,7 @@ png_process_some_data(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_iTXt_SUPPORTED)
|
| +#ifdef PNG_READ_iTXt_SUPPORTED
|
| case PNG_READ_iTXt_MODE:
|
| {
|
| png_push_read_iTXt(png_ptr, info_ptr);
|
| @@ -151,58 +155,59 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| PNG_CONST PNG_IDAT;
|
| PNG_CONST PNG_IEND;
|
| PNG_CONST PNG_PLTE;
|
| -#if defined(PNG_READ_bKGD_SUPPORTED)
|
| +#ifdef PNG_READ_bKGD_SUPPORTED
|
| PNG_CONST PNG_bKGD;
|
| #endif
|
| -#if defined(PNG_READ_cHRM_SUPPORTED)
|
| +#ifdef PNG_READ_cHRM_SUPPORTED
|
| PNG_CONST PNG_cHRM;
|
| #endif
|
| -#if defined(PNG_READ_gAMA_SUPPORTED)
|
| +#ifdef PNG_READ_gAMA_SUPPORTED
|
| PNG_CONST PNG_gAMA;
|
| #endif
|
| -#if defined(PNG_READ_hIST_SUPPORTED)
|
| +#ifdef PNG_READ_hIST_SUPPORTED
|
| PNG_CONST PNG_hIST;
|
| #endif
|
| -#if defined(PNG_READ_iCCP_SUPPORTED)
|
| +#ifdef PNG_READ_iCCP_SUPPORTED
|
| PNG_CONST PNG_iCCP;
|
| #endif
|
| -#if defined(PNG_READ_iTXt_SUPPORTED)
|
| +#ifdef PNG_READ_iTXt_SUPPORTED
|
| PNG_CONST PNG_iTXt;
|
| #endif
|
| -#if defined(PNG_READ_oFFs_SUPPORTED)
|
| +#ifdef PNG_READ_oFFs_SUPPORTED
|
| PNG_CONST PNG_oFFs;
|
| #endif
|
| -#if defined(PNG_READ_pCAL_SUPPORTED)
|
| +#ifdef PNG_READ_pCAL_SUPPORTED
|
| PNG_CONST PNG_pCAL;
|
| #endif
|
| -#if defined(PNG_READ_pHYs_SUPPORTED)
|
| +#ifdef PNG_READ_pHYs_SUPPORTED
|
| PNG_CONST PNG_pHYs;
|
| #endif
|
| -#if defined(PNG_READ_sBIT_SUPPORTED)
|
| +#ifdef PNG_READ_sBIT_SUPPORTED
|
| PNG_CONST PNG_sBIT;
|
| #endif
|
| -#if defined(PNG_READ_sCAL_SUPPORTED)
|
| +#ifdef PNG_READ_sCAL_SUPPORTED
|
| PNG_CONST PNG_sCAL;
|
| #endif
|
| -#if defined(PNG_READ_sRGB_SUPPORTED)
|
| +#ifdef PNG_READ_sRGB_SUPPORTED
|
| PNG_CONST PNG_sRGB;
|
| #endif
|
| -#if defined(PNG_READ_sPLT_SUPPORTED)
|
| +#ifdef PNG_READ_sPLT_SUPPORTED
|
| PNG_CONST PNG_sPLT;
|
| #endif
|
| -#if defined(PNG_READ_tEXt_SUPPORTED)
|
| +#ifdef PNG_READ_tEXt_SUPPORTED
|
| PNG_CONST PNG_tEXt;
|
| #endif
|
| -#if defined(PNG_READ_tIME_SUPPORTED)
|
| +#ifdef PNG_READ_tIME_SUPPORTED
|
| PNG_CONST PNG_tIME;
|
| #endif
|
| -#if defined(PNG_READ_tRNS_SUPPORTED)
|
| +#ifdef PNG_READ_tRNS_SUPPORTED
|
| PNG_CONST PNG_tRNS;
|
| #endif
|
| -#if defined(PNG_READ_zTXt_SUPPORTED)
|
| +#ifdef PNG_READ_zTXt_SUPPORTED
|
| PNG_CONST PNG_zTXt;
|
| #endif
|
| #endif /* PNG_USE_LOCAL_ARRAYS */
|
| +
|
| /* First we make sure we have enough data for the 4 byte chunk name
|
| * and the 4 byte chunk length before proceeding with decoding the
|
| * chunk data. To fully decode each of these chunks, we also make
|
| @@ -326,12 +331,14 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| png_ptr->mode |= PNG_HAVE_IDAT;
|
| png_ptr->process_mode = PNG_READ_IDAT_MODE;
|
| png_push_have_info(png_ptr, info_ptr);
|
| - png_ptr->zstream.avail_out = (uInt)png_ptr->irowbytes;
|
| + png_ptr->zstream.avail_out =
|
| + (uInt) PNG_ROWBYTES(png_ptr->pixel_depth,
|
| + png_ptr->iwidth) + 1;
|
| png_ptr->zstream.next_out = png_ptr->row_buf;
|
| return;
|
| }
|
|
|
| -#if defined(PNG_READ_gAMA_SUPPORTED)
|
| +#ifdef PNG_READ_gAMA_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_gAMA, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -344,7 +351,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_sBIT_SUPPORTED)
|
| +#ifdef PNG_READ_sBIT_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_sBIT, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -357,7 +364,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_cHRM_SUPPORTED)
|
| +#ifdef PNG_READ_cHRM_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_cHRM, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -370,7 +377,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_sRGB_SUPPORTED)
|
| +#ifdef PNG_READ_sRGB_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_sRGB, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -383,7 +390,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_iCCP_SUPPORTED)
|
| +#ifdef PNG_READ_iCCP_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_iCCP, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -396,7 +403,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_sPLT_SUPPORTED)
|
| +#ifdef PNG_READ_sPLT_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_sPLT, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -409,7 +416,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_tRNS_SUPPORTED)
|
| +#ifdef PNG_READ_tRNS_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_tRNS, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -422,7 +429,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_bKGD_SUPPORTED)
|
| +#ifdef PNG_READ_bKGD_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_bKGD, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -435,7 +442,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_hIST_SUPPORTED)
|
| +#ifdef PNG_READ_hIST_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_hIST, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -448,7 +455,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_pHYs_SUPPORTED)
|
| +#ifdef PNG_READ_pHYs_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_pHYs, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -461,7 +468,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_oFFs_SUPPORTED)
|
| +#ifdef PNG_READ_oFFs_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_oFFs, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -474,7 +481,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
| #endif
|
|
|
| -#if defined(PNG_READ_pCAL_SUPPORTED)
|
| +#ifdef PNG_READ_pCAL_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_pCAL, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -487,7 +494,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_sCAL_SUPPORTED)
|
| +#ifdef PNG_READ_sCAL_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_sCAL, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -500,7 +507,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_tIME_SUPPORTED)
|
| +#ifdef PNG_READ_tIME_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_tIME, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -513,7 +520,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_tEXt_SUPPORTED)
|
| +#ifdef PNG_READ_tEXt_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_tEXt, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -526,7 +533,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_zTXt_SUPPORTED)
|
| +#ifdef PNG_READ_zTXt_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_zTXt, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -539,7 +546,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
| }
|
|
|
| #endif
|
| -#if defined(PNG_READ_iTXt_SUPPORTED)
|
| +#ifdef PNG_READ_iTXt_SUPPORTED
|
| else if (!png_memcmp(png_ptr->chunk_name, png_iTXt, 4))
|
| {
|
| if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
| @@ -695,8 +702,13 @@ png_push_save_buffer(png_structp png_ptr)
|
|
|
| new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256;
|
| old_buffer = png_ptr->save_buffer;
|
| - png_ptr->save_buffer = (png_bytep)png_malloc(png_ptr,
|
| + png_ptr->save_buffer = (png_bytep)png_malloc_warn(png_ptr,
|
| (png_uint_32)new_max);
|
| + if (png_ptr->save_buffer == NULL)
|
| + {
|
| + png_free(png_ptr, old_buffer);
|
| + png_error(png_ptr, "Insufficient memory for save_buffer");
|
| + }
|
| png_memcpy(png_ptr->save_buffer, old_buffer, png_ptr->save_buffer_size);
|
| png_free(png_ptr, old_buffer);
|
| png_ptr->save_buffer_max = new_max;
|
| @@ -796,7 +808,7 @@ png_push_read_IDAT(png_structp png_ptr)
|
|
|
| png_calculate_crc(png_ptr, png_ptr->current_buffer_ptr, save_size);
|
| if (!(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED))
|
| - png_process_IDAT_data(png_ptr, png_ptr->current_buffer_ptr, save_size);
|
| + png_process_IDAT_data(png_ptr, png_ptr->current_buffer_ptr, save_size);
|
|
|
| png_ptr->idat_size -= save_size;
|
| png_ptr->buffer_size -= save_size;
|
| @@ -856,7 +868,7 @@ png_process_IDAT_data(png_structp png_ptr, png_bytep buffer,
|
| if (!(png_ptr->zstream.avail_out))
|
| {
|
| if ((
|
| -#if defined(PNG_READ_INTERLACING_SUPPORTED)
|
| +#ifdef PNG_READ_INTERLACING_SUPPORTED
|
| png_ptr->interlaced && png_ptr->pass > 6) ||
|
| (!png_ptr->interlaced &&
|
| #endif
|
| @@ -868,7 +880,9 @@ png_process_IDAT_data(png_structp png_ptr, png_bytep buffer,
|
| break;
|
| }
|
| png_push_process_row(png_ptr);
|
| - png_ptr->zstream.avail_out = (uInt)png_ptr->irowbytes;
|
| + png_ptr->zstream.avail_out =
|
| + (uInt) PNG_ROWBYTES(png_ptr->pixel_depth,
|
| + png_ptr->iwidth) + 1;
|
| png_ptr->zstream.next_out = png_ptr->row_buf;
|
| }
|
|
|
| @@ -899,7 +913,7 @@ png_push_process_row(png_structp png_ptr)
|
| if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA))
|
| png_do_read_transformations(png_ptr);
|
|
|
| -#if defined(PNG_READ_INTERLACING_SUPPORTED)
|
| +#ifdef PNG_READ_INTERLACING_SUPPORTED
|
| /* Blow up interlaced rows to full size */
|
| if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
|
| {
|
| @@ -1111,7 +1125,7 @@ png_read_push_finish_row(png_structp png_ptr)
|
| if (png_ptr->row_number < png_ptr->num_rows)
|
| return;
|
|
|
| -#if defined(PNG_READ_INTERLACING_SUPPORTED)
|
| +#ifdef PNG_READ_INTERLACING_SUPPORTED
|
| if (png_ptr->interlaced)
|
| {
|
| png_ptr->row_number = 0;
|
| @@ -1136,9 +1150,6 @@ png_read_push_finish_row(png_structp png_ptr)
|
| png_pass_start[png_ptr->pass]) /
|
| png_pass_inc[png_ptr->pass];
|
|
|
| - png_ptr->irowbytes = PNG_ROWBYTES(png_ptr->pixel_depth,
|
| - png_ptr->iwidth) + 1;
|
| -
|
| if (png_ptr->transformations & PNG_INTERLACE)
|
| break;
|
|
|
| @@ -1152,7 +1163,7 @@ png_read_push_finish_row(png_structp png_ptr)
|
| #endif /* PNG_READ_INTERLACING_SUPPORTED */
|
| }
|
|
|
| -#if defined(PNG_READ_tEXt_SUPPORTED)
|
| +#ifdef PNG_READ_tEXt_SUPPORTED
|
| void /* PRIVATE */
|
| png_push_handle_tEXt(png_structp png_ptr, png_infop info_ptr, png_uint_32
|
| length)
|
| @@ -1215,7 +1226,7 @@ png_push_read_tEXt(png_structp png_ptr, png_infop info_ptr)
|
|
|
| png_push_crc_finish(png_ptr);
|
|
|
| -#if defined(PNG_MAX_MALLOC_64K)
|
| +#ifdef PNG_MAX_MALLOC_64K
|
| if (png_ptr->skip_length)
|
| return;
|
| #endif
|
| @@ -1250,7 +1261,7 @@ png_push_read_tEXt(png_structp png_ptr, png_infop info_ptr)
|
| }
|
| #endif
|
|
|
| -#if defined(PNG_READ_zTXt_SUPPORTED)
|
| +#ifdef PNG_READ_zTXt_SUPPORTED
|
| void /* PRIVATE */
|
| png_push_handle_zTXt(png_structp png_ptr, png_infop info_ptr, png_uint_32
|
| length)
|
| @@ -1451,7 +1462,7 @@ png_push_read_zTXt(png_structp png_ptr, png_infop info_ptr)
|
| }
|
| #endif
|
|
|
| -#if defined(PNG_READ_iTXt_SUPPORTED)
|
| +#ifdef PNG_READ_iTXt_SUPPORTED
|
| void /* PRIVATE */
|
| png_push_handle_iTXt(png_structp png_ptr, png_infop info_ptr, png_uint_32
|
| length)
|
| @@ -1518,7 +1529,7 @@ png_push_read_iTXt(png_structp png_ptr, png_infop info_ptr)
|
|
|
| png_push_crc_finish(png_ptr);
|
|
|
| -#if defined(PNG_MAX_MALLOC_64K)
|
| +#ifdef PNG_MAX_MALLOC_64K
|
| if (png_ptr->skip_length)
|
| return;
|
| #endif
|
| @@ -1567,7 +1578,7 @@ png_push_read_iTXt(png_structp png_ptr, png_infop info_ptr)
|
|
|
| png_free(png_ptr, text_ptr);
|
| if (ret)
|
| - png_warning(png_ptr, "Insufficient memory to store iTXt chunk.");
|
| + png_warning(png_ptr, "Insufficient memory to store iTXt chunk.");
|
| }
|
| }
|
| #endif
|
| @@ -1584,10 +1595,10 @@ png_push_handle_unknown(png_structp png_ptr, png_infop info_ptr, png_uint_32
|
|
|
| if (!(png_ptr->chunk_name[0] & 0x20))
|
| {
|
| -#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
|
| +#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
|
| if (png_handle_as_unknown(png_ptr, png_ptr->chunk_name) !=
|
| PNG_HANDLE_CHUNK_ALWAYS
|
| -#if defined(PNG_READ_USER_CHUNKS_SUPPORTED)
|
| +#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
|
| && png_ptr->read_user_chunk_fn == NULL
|
| #endif
|
| )
|
| @@ -1597,7 +1608,7 @@ png_push_handle_unknown(png_structp png_ptr, png_infop info_ptr, png_uint_32
|
| info_ptr = info_ptr; /* To quiet some compiler warnings */
|
| }
|
|
|
| -#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
|
| +#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
|
| if (png_ptr->flags & PNG_FLAG_KEEP_UNKNOWN_CHUNKS)
|
| {
|
| #ifdef PNG_MAX_MALLOC_64K
|
| @@ -1622,11 +1633,11 @@ png_push_handle_unknown(png_structp png_ptr, png_infop info_ptr, png_uint_32
|
| else
|
| {
|
| png_ptr->unknown_chunk.data = (png_bytep)png_malloc(png_ptr,
|
| - (png_uint_32)length);
|
| + (png_uint_32)length);
|
| png_crc_read(png_ptr, (png_bytep)png_ptr->unknown_chunk.data, length);
|
| }
|
|
|
| -#if defined(PNG_READ_USER_CHUNKS_SUPPORTED)
|
| +#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
|
| if (png_ptr->read_user_chunk_fn != NULL)
|
| {
|
| /* Callback to user unknown chunk handler */
|
| @@ -1691,6 +1702,7 @@ png_progressive_combine_row (png_structp png_ptr,
|
| PNG_CONST int FARDATA png_pass_dsp_mask[7] =
|
| {0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff};
|
| #endif
|
| +
|
| if (png_ptr == NULL)
|
| return;
|
|
|
|
|