From: foobar Date: Fri, 20 Feb 2004 03:16:51 +0000 (+0000) Subject: Fix compile failure X-Git-Tag: RELEASE_0_2_0~258 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26332c04362d7ba6fdd804b824ebd528e49d55b5;p=php Fix compile failure --- diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index 6a2d665819..4f511c340c 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -838,7 +838,7 @@ static void _oci_desc_flush_hash_dtor(void *data) { TSRMLS_FETCH(); - oci_descriptor *descr = *((oci_descriptor **)data); + oci_descriptor *descr = *(oci_descriptor **)data; if (descr->buffering == 2 && (descr->type == OCI_DTYPE_LOB || descr->type == OCI_DTYPE_FILE)) { oci_lob_flush(descr,OCI_LOB_BUFFER_FREE TSRMLS_CC); descr->buffering = 1;