From 26332c04362d7ba6fdd804b824ebd528e49d55b5 Mon Sep 17 00:00:00 2001 From: foobar Date: Fri, 20 Feb 2004 03:16:51 +0000 Subject: [PATCH] Fix compile failure --- ext/oci8/oci8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1