1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 07:28:09 +02:00

changed return type of ZEND_VERIFY_RESOURCE from FALSE to NULL

This commit is contained in:
Thies C. Arntzen
2000-06-15 18:15:51 +00:00
parent a99ca5a64a
commit 565400780b
+1 -1
View File
@@ -87,7 +87,7 @@ extern ZEND_API int le_index_ptr; /* list entry type for index pointers */
#define ZEND_VERIFY_RESOURCE(rsrc) \
if (!rsrc) { \
RETURN_FALSE; \
RETURN_NULL; \
}
#define ZEND_FETCH_RESOURCE(rsrc, rsrc_type, passed_id, default_id, resource_type_name, resource_type) \