aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerek Sollenberger <djsollen@google.com>2014-09-22 16:28:36 -0400
committerDerek Sollenberger <djsollen@google.com>2014-09-22 16:28:36 -0400
commit8594e1a8521b2cbdd941719b929b15ba943b1d4a (patch)
tree91739e32ae24c44c9c361e06e4edf43cd3dd5e8c
parent7f21a7f1c312334ba3548100d6fbdb5679127026 (diff)
downloadlibpng-android-5.0.0_r7.tar.gz
This should prevent crashes when we attempt to cleanup the codec when an image fails to properly decode in tiled mode. bug: 17433945 Change-Id: I145269b25bd2cf820f5c9b4b00ac15d4278dfbd1
-rw-r--r--pngread.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/pngread.c b/pngread.c
index 2a6ffbe98..752eac005 100644
--- a/pngread.c
+++ b/pngread.c
@@ -781,10 +781,10 @@ png_build_index(png_structp png_ptr)
// has roughly the same size of index.
// This way, we won't consume to much memory in recording index.
index->step[p] = INDEX_SAMPLE_SIZE * (8 / number_rows_in_pass[p]);
- index->size[p] =
+ const int temp_size =
(png_ptr->height + index->step[p] - 1) / index->step[p];
index->pass_line_index[p] =
- png_malloc(png_ptr, index->size[p] * sizeof(png_line_indexp));
+ png_malloc(png_ptr, temp_size * sizeof(png_line_indexp));
// Get the row_byte_length seen by the filter. This value may be
// different from the row_byte_length of a bitmap in the case of
@@ -793,7 +793,7 @@ png_build_index(png_structp png_ptr)
PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->iwidth) + 1;
// Now, we record index for each indexing row.
- for (i = 0; i < index->size[p]; i++)
+ for (i = 0; i < temp_size; i++)
{
png_line_indexp line_index = png_malloc(png_ptr, sizeof(png_line_index));
index->pass_line_index[p][i] = line_index;
@@ -805,6 +805,11 @@ png_build_index(png_structp png_ptr)
line_index->stream_idat_position = index->stream_idat_position;
line_index->bytes_left_in_idat = png_ptr->idat_size + png_ptr->zstream.avail_in;
+ // increment the size now that we have the backing data structures.
+ // This prevents a crash in the event that png_read_row fails and
+ // we need to cleanup the partially constructed png_index_struct;
+ index->size[p] += 1;
+
// Skip the "step" number of rows to the next indexing row.
for (j = 0; j < index->step[p] &&
i * index->step[p] + j < png_ptr->height; j++)