mirror of
https://github.com/php/php-src.git
synced 2025-01-23 20:23:31 +08:00
- Fix build
This commit is contained in:
parent
32e478b9fc
commit
e0ec7c981e
@ -605,6 +605,7 @@ END_EXTERN_C()
|
||||
|
||||
#define ZEND_MAX_RESERVED_RESOURCES 4
|
||||
|
||||
#include "zend_variables.h"
|
||||
|
||||
#endif /* ZEND_H */
|
||||
|
||||
|
@ -40,9 +40,9 @@ ZEND_API int _zval_copy_ctor_func(zval *zvalue ZEND_FILE_LINE_DC);
|
||||
static inline int _zval_copy_ctor(zval *zvalue ZEND_FILE_LINE_DC)
|
||||
{
|
||||
if (zvalue->type <= IS_BOOL) {
|
||||
return;
|
||||
return SUCCESS;
|
||||
}
|
||||
_zval_copy_ctor_func(zvalue ZEND_FILE_LINE_CC);
|
||||
return _zval_copy_ctor_func(zvalue ZEND_FILE_LINE_CC);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user