summaryrefslogtreecommitdiff
path: root/ext/gd/libgd/gd_gif_in.c
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2017-07-04 21:18:04 -0700
committerStanislav Malyshev <stas@php.net>2017-07-04 21:18:10 -0700
commit0ba04f77379b5d277f5bd190c1542a0d91289978 (patch)
treed0dc321d8693b165a176241d28ad1813609fe162 /ext/gd/libgd/gd_gif_in.c
parent1fa8e74d6eebaa19174ea56581f23b13e6b77000 (diff)
parent54840f9c8f9edb4c243f7f2d7ffbb61759ef9507 (diff)
downloadphp-git-0ba04f77379b5d277f5bd190c1542a0d91289978.tar.gz
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0: Improve fix for #74145 Fix wddx Fix tests Fixed bug #74111 Fix bug #74603 - use correct buffer size Fix bug #74651 - check EVP_SealInit as it can return -1 Update NEWS Fix bug #74087 Fixed parsing of strange formats with mixed month/day and time strings Fix bug #74145 - wddx parsing empty boolean tag leads to SIGSEGV Fixed bug #74111 Fix #74435: Buffer over-read into uninitialized memory Fix bug #74603 - use correct buffer size Fix bug #74651 - check EVP_SealInit as it can return -1 Update NEWS Fix bug #73807
Diffstat (limited to 'ext/gd/libgd/gd_gif_in.c')
-rw-r--r--ext/gd/libgd/gd_gif_in.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/gd/libgd/gd_gif_in.c b/ext/gd/libgd/gd_gif_in.c
index 74b7493331..76ba152035 100644
--- a/ext/gd/libgd/gd_gif_in.c
+++ b/ext/gd/libgd/gd_gif_in.c
@@ -147,6 +147,9 @@ gdImagePtr gdImageCreateFromGifCtx(gdIOCtxPtr fd) /* {{{ */
int haveGlobalColormap;
gdImagePtr im = 0;
+ memset(ColorMap, 0, 3 * MAXCOLORMAPSIZE);
+ memset(localColorMap, 0, 3 * MAXCOLORMAPSIZE);
+
/*1.4//imageNumber = 1; */
if (! ReadOK(fd,buf,6)) {
return 0;