summaryrefslogtreecommitdiff
path: root/Zend/zend_list.h
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2000-06-15 18:15:51 +0000
committerThies C. Arntzen <thies@php.net>2000-06-15 18:15:51 +0000
commit565400780b973b765ecb27f08568d3b6f1f79451 (patch)
tree977e298a5d4b825d844f333fbc83de29d105307d /Zend/zend_list.h
parenta99ca5a64acadde3923c535f29ed790a40378795 (diff)
downloadphp-git-565400780b973b765ecb27f08568d3b6f1f79451.tar.gz
changed return type of ZEND_VERIFY_RESOURCE from FALSE to NULL
Diffstat (limited to 'Zend/zend_list.h')
-rw-r--r--Zend/zend_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_list.h b/Zend/zend_list.h
index 5ba126cb61..1eb18dbbb9 100644
--- a/Zend/zend_list.h
+++ b/Zend/zend_list.h
@@ -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) \