diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-01-16 02:53:44 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-01-16 02:53:44 +0000 |
commit | 4e53357e9bab7ac8a22218f283213f8a4bec7fbf (patch) | |
tree | 2aec1b2929a28dd5bd20157d3e8457b26be3074d /ext/oracle/oracle.c | |
parent | 7f3b79adc5e47ba41434ee4c8967173f6d32123b (diff) | |
download | php-git-4e53357e9bab7ac8a22218f283213f8a4bec7fbf.tar.gz |
Fixed bug #20079 (made ora_logoff return TRUE on success).
Diffstat (limited to 'ext/oracle/oracle.c')
-rw-r--r-- | ext/oracle/oracle.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c index 8e35627c6f..0dc2814b36 100644 --- a/ext/oracle/oracle.c +++ b/ext/oracle/oracle.c @@ -601,6 +601,8 @@ PHP_FUNCTION(ora_logoff) ZEND_FETCH_RESOURCE2(conn, oraConnection *, arg, -1, "Oracle-Connection", le_conn, le_pconn); zend_list_delete(Z_LVAL_PP(arg)); + + RETURN_TRUE; } /* }}} */ |