aboutsummaryrefslogtreecommitdiff
path: root/pngrutil.c
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2017-08-05 20:15:52 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2017-08-05 20:15:52 -0500
commitc5c778bcfc21182cf3896dcfa044e494d4f9b96c (patch)
tree7e44988820d22d27d026d48aada24718e38b9977 /pngrutil.c
parent1ebe4f75cc71de97bd97b8bd7347224e004fb2fe (diff)
downloadlibpng-c5c778bcfc21182cf3896dcfa044e494d4f9b96c.tar.gz
[libpng16] Initialize profile_header[] in png_handle_iCCP() to fix OSS-fuzz issue.
Diffstat (limited to 'pngrutil.c')
-rw-r--r--pngrutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pngrutil.c b/pngrutil.c
index 81c67ae7d..2cb0d0d7e 100644
--- a/pngrutil.c
+++ b/pngrutil.c
@@ -1434,7 +1434,7 @@ png_handle_iCCP(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
if (png_inflate_claim(png_ptr, png_iCCP) == Z_OK)
{
- Byte profile_header[132];
+ Byte profile_header[132]={0};
Byte local_buffer[PNG_INFLATE_BUF_SIZE];
png_alloc_size_t size = (sizeof profile_header);