File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -585,7 +585,7 @@ static void accel_use_shm_interned_strings(void)
585
585
586
586
for (j = 0 ; j < ce -> constants_table .nNumUsed ; j ++ ) {
587
587
q = ce -> constants_table .arData + j ;
588
- if (! Z_TYPE (q -> val ) == IS_UNDEF ) continue ;
588
+ if (Z_TYPE (q -> val ) == IS_UNDEF ) continue ;
589
589
if (q -> key ) {
590
590
q -> key = accel_new_interned_string (q -> key );
591
591
}
@@ -595,7 +595,7 @@ static void accel_use_shm_interned_strings(void)
595
595
/* constant hash keys */
596
596
for (idx = 0 ; idx < EG (zend_constants )-> nNumUsed ; idx ++ ) {
597
597
p = EG (zend_constants )-> arData + idx ;
598
- if (! Z_TYPE (p -> val ) == IS_UNDEF ) continue ;
598
+ if (Z_TYPE (p -> val ) == IS_UNDEF ) continue ;
599
599
if (p -> key ) {
600
600
p -> key = accel_new_interned_string (p -> key );
601
601
}
You can’t perform that action at this time.
0 commit comments