Oops, fix it indeed

This commit is contained in:
Stanislav Malyshev 2002-12-30 17:19:32 +00:00
parent 37571334d9
commit 0af3b5a692

View File

@ -73,7 +73,7 @@ typedef struct _zend_object_handlers {
extern zend_object_handlers std_object_handlers;
#define IS_ZEND_STD_OBJECT(z) ((z).type == IS_OBJECT && Z_OBJ_HT_P(zobject)->get_class_entry)
#define IS_ZEND_STD_OBJECT(z) ((z).type == IS_OBJECT && (Z_OBJ_HT_P((z))->get_class_entry != NULL))
#define HAS_CLASS_ENTRY(z) (Z_OBJ_HT(z)->get_class_entry != NULL)
#endif