From: Antony Dovgal Date: Tue, 13 Feb 2007 20:19:56 +0000 (+0000) Subject: MFH X-Git-Tag: php-5.2.2RC1~406 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=32c2c7a510c809f3cf81c960b33f13fff0a630be;p=php MFH --- diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h index 719496a838..f8670154ae 100644 --- a/ext/oci8/php_oci8_int.h +++ b/ext/oci8/php_oci8_int.h @@ -223,22 +223,22 @@ typedef struct { /* php_oci_out_column {{{ */ #define PHP_OCI_CALL(func, params) \ do { \ - OCI_G(in_call) = 1; \ - func params; \ - OCI_G(in_call) = 0; \ if (OCI_G(debug_mode)) { \ php_printf ("OCI8 DEBUG: " #func " at (%s:%d) \n", __FILE__, __LINE__); \ } \ + OCI_G(in_call) = 1; \ + func params; \ + OCI_G(in_call) = 0; \ } while (0) #define PHP_OCI_CALL_RETURN(__retval, func, params) \ do { \ - OCI_G(in_call) = 1; \ - __retval = func params; \ - OCI_G(in_call) = 0; \ if (OCI_G(debug_mode)) { \ php_printf ("OCI8 DEBUG: " #func " at (%s:%d) \n", __FILE__, __LINE__); \ } \ + OCI_G(in_call) = 1; \ + __retval = func params; \ + OCI_G(in_call) = 0; \ } while (0) #define PHP_OCI_HANDLE_ERROR(connection, errcode) \