- Fix build

This commit is contained in:
Marcus Boerger 2004-09-26 22:19:57 +00:00
parent 32e478b9fc
commit e0ec7c981e
2 changed files with 3 additions and 2 deletions

View File

@ -605,6 +605,7 @@ END_EXTERN_C()
#define ZEND_MAX_RESERVED_RESOURCES 4
#include "zend_variables.h"
#endif /* ZEND_H */

View File

@ -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);
}