]> granicus.if.org Git - php/commitdiff
- Sync with ZE1
authorAndi Gutmans <andi@php.net>
Thu, 16 Aug 2001 14:12:03 +0000 (14:12 +0000)
committerAndi Gutmans <andi@php.net>
Thu, 16 Aug 2001 14:12:03 +0000 (14:12 +0000)
Zend/zend_variables.c

index 61043583828b210c1b46732d698aaa4387c277ef..cc2218fc75e8d4b0f6a8538779e2bba727942f7c 100644 (file)
@@ -133,8 +133,9 @@ ZEND_API int _zval_copy_ctor(zval *zvalue ZEND_FILE_LINE_DC)
 ZEND_API int zval_persist(zval *zvalue TSRMLS_DC)
 {
        switch (zvalue->type) {
+               case IS_OBJECT:
                case IS_RESOURCE:
-                       return FAILURE; /* resources cannot be persisted */
+                       return FAILURE; /* resources and objects cannot be persisted */
                        break;
                case IS_BOOL:
                case IS_LONG:
@@ -155,9 +156,6 @@ ZEND_API int zval_persist(zval *zvalue TSRMLS_DC)
                        persist_alloc(zvalue->value.ht);
                        zend_hash_apply(zvalue->value.ht, (apply_func_t) zval_persist TSRMLS_CC);
                        break;
-               case IS_OBJECT:
-                       return FAILURE; /* objects cannot be persisted */ 
-                       break;
        }
        return SUCCESS;
 }