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 8376fe1 commit 20a707dCopy full SHA for 20a707d
ext/opcache/zend_persist_calc.c
@@ -217,6 +217,11 @@ static uint zend_persist_op_array_calc(zend_op_array *op_array TSRMLS_DC)
217
218
}
219
220
+
221
+ ADD_DUP_SIZE(&op_array->return_hint, sizeof(zend_return_hint));
222
+ if (op_array->return_hint.used && op_array->return_hint.type == IS_OBJECT) {
223
+ ADD_INTERNED_STRING(op_array->return_hint.class_name, op_array->return_hint.class_name_len + 1);
224
+ }
225
226
if (op_array->brk_cont_array) {
227
ADD_DUP_SIZE(op_array->brk_cont_array, sizeof(zend_brk_cont_element) * op_array->last_brk_cont);
0 commit comments