diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index 8f771251798..c5a6011f17e 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -12,7 +12,7 @@ | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ - | Authors: Stig Sæther Bakken | + | Authors: Stig Sæther Bakken | | Thies C. Arntzen | | Maxim Maletsky | | | @@ -2349,7 +2349,7 @@ static oci_session *_oci_open_session(oci_server* server,char *username,char *pa return psession; - CLEANUP: +CLEANUP: oci_debug("_oci_open_session: FAILURE -> CLEANUP called"); _oci_close_session(session); @@ -2526,7 +2526,7 @@ static oci_server *_oci_open_server(char *dbname,int persistent) return pserver; - CLEANUP: +CLEANUP: oci_debug("_oci_open_server: FAILURE -> CLEANUP called"); _oci_close_server(server); @@ -2769,7 +2769,7 @@ static void oci_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent,int exclu RETURN_RESOURCE(connection->id); - CLEANUP: +CLEANUP: oci_debug("oci_do_connect: FAILURE -> CLEANUP called"); if (connection->id) { @@ -3415,7 +3415,7 @@ PHP_FUNCTION(ociwritelobtofile) RETURN_TRUE; } - bail: +bail: if (fp != -1) { close(fp); }