]> granicus.if.org Git - php/commitdiff
MFH
authorAntony Dovgal <tony2001@php.net>
Tue, 13 Feb 2007 20:19:56 +0000 (20:19 +0000)
committerAntony Dovgal <tony2001@php.net>
Tue, 13 Feb 2007 20:19:56 +0000 (20:19 +0000)
ext/oci8/php_oci8_int.h

index 719496a838c2398262ddf40582c889f533754661..f8670154ae053b15c43a33cc1a12ebe2bd8b3f1c 100644 (file)
@@ -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) \