mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
- Incrementation is done elsewhere
This commit is contained in:
parent
a7e4f84c5d
commit
02c35975c0
@ -1642,7 +1642,7 @@ ZEND_API void zend_class_implements(zend_class_entry *class_entry TSRMLS_DC, int
|
||||
|
||||
while (num_interfaces--) {
|
||||
interface_entry = va_arg(interface_list, zend_class_entry *);
|
||||
class_entry->interfaces[class_entry->num_interfaces++] = interface_entry;
|
||||
class_entry->interfaces[class_entry->num_interfaces] = interface_entry;
|
||||
zend_do_implement_interface(class_entry, interface_entry TSRMLS_CC);
|
||||
}
|
||||
va_end(interface_list);
|
||||
|
Loading…
Reference in New Issue
Block a user