We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae20c6 commit 9a404dfCopy full SHA for 9a404df
NEWS
@@ -2,6 +2,9 @@ PHP NEWS
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
?? ??? 2015 PHP 5.4.40
4
5
+- Ereg:
6
+ . Fixed bug #68740 (NULL Pointer Dereference). (Laruence)
7
+
8
- GD:
9
. Fixed bug #68601 (buffer read overflow in gd_gif_in.c). (Remi)
10
ext/ereg/regex/regcomp.c
@@ -1284,6 +1284,10 @@ int c;
1284
register int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT;
1285
register unsigned uc = (unsigned char)c;
1286
1287
+ if (!g->setbits) {
1288
+ return(0);
1289
+ }
1290
1291
for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1292
if (col[uc] != 0)
1293
return(1);
0 commit comments