From: Thies C. Arntzen Date: Sat, 11 Aug 2001 10:52:52 +0000 (+0000) Subject: beautify X-Git-Tag: BEFORE_EXP_MERGE~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=384c86542a91c1e1bb2fc5a3751d8bd93c8ee5ea;p=php beautify --- diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index af35e4a533..cefe7d950f 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -1101,7 +1101,7 @@ _oci_get_ocicoll(zval *id,oci_collection **collection TSRMLS_DC) { zval **coll; - if (zend_hash_find(Z_OBJPROP(*id), "collection", sizeof("collection"), (void **)&coll) == FAILURE) { + if (zend_hash_find(Z_OBJPROP_P(id), "collection", sizeof("collection"), (void **)&coll) == FAILURE) { php_error(E_WARNING, "cannot find collection"); return 0; } @@ -1125,7 +1125,7 @@ _oci_get_ocidesc(zval *id,oci_descriptor **descriptor TSRMLS_DC) { zval **desc; - if (zend_hash_find(Z_OBJPROP(*id), "descriptor", sizeof("descriptor"), (void **)&desc) == FAILURE) { + if (zend_hash_find(Z_OBJPROP_P(id), "descriptor", sizeof("descriptor"), (void **)&desc) == FAILURE) { php_error(E_WARNING, "cannot find descriptor"); return 0; }