summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/oci8/oci8.c2
1 files changed, 1 insertions, 1 deletions
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;