File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ PHP NEWS
6
6
. Fixed bug #80007 (Potential type confusion in unixtojd() parameter parsing).
7
7
(Andy Postnikov)
8
8
9
+ - OPcache:
10
+ . Fixed bug #80002 (calc free space for new interned string is wrong).
11
+ (t-matsuno)
12
+
9
13
03 Sep 2020, PHP 7.3.22
10
14
11
15
- Core:
Original file line number Diff line number Diff line change @@ -487,7 +487,7 @@ zend_string* ZEND_FASTCALL accel_new_interned_string(zend_string *str)
487
487
} while (pos != STRTAB_INVALID_POS );
488
488
}
489
489
490
- if (UNEXPECTED (ZCSG (interned_strings ).end - ZCSG (interned_strings ).top < STRTAB_STR_SIZE (str ))) {
490
+ if (UNEXPECTED (( char * ) ZCSG (interned_strings ).end - ( char * ) ZCSG (interned_strings ).top < STRTAB_STR_SIZE (str ))) {
491
491
/* no memory, return the same non-interned string */
492
492
zend_accel_error (ACCEL_LOG_WARNING , "Interned string buffer overflow" );
493
493
return str ;
You can’t perform that action at this time.
0 commit comments