Patch ErrorCorrectingFunction for Class/Object related Bug #79250
Patch version 2020-02-10 11:23 UTC
Return to Bug #79250 |
Download this patch
Patch Revisions:
Developer: KseniMailWOW@gmail.com
static zend_always_inline zend_bool is_persistent_class(zend_class_entry *ce) {
return (ce->type & ZEND_INTERNAL_CLASS)
&& (!ce->info.internal.module || ce->info.internal.module->type == MODULE_PERSISTENT);
}
/*
static zend_always_inline zend_bool is_persistent_class(zend_class_entry *ce) {
return (ce->type & ZEND_INTERNAL_CLASS) && (ce->info.internal.module && (ce->info.internal.module->type == MODULE_PERSISTENT));
}
*/
|