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
66 . Fixed bug #80007 (Potential type confusion in unixtojd() parameter parsing).
77 (Andy Postnikov)
88
9+ - OPcache:
10+ . Fixed bug #80002 (calc free space for new interned string is wrong).
11+ (t-matsuno)
12+
91303 Sep 2020, PHP 7.3.22
1014
1115- 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)
487487 } while (pos != STRTAB_INVALID_POS );
488488 }
489489
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 ))) {
491491 /* no memory, return the same non-interned string */
492492 zend_accel_error (ACCEL_LOG_WARNING , "Interned string buffer overflow" );
493493 return str ;
You can’t perform that action at this time.
0 commit comments