| byterock@cvs.perl.org 2006-03-31, 11:31 am |
| Author: byterock
Date: Fri Mar 31 08:31:22 2006
New Revision: 3726
Modified:
dbd-oracle/trunk/Changes
dbd-oracle/trunk/oci8.c
Log:
fix for a small bug on the last patch from Jeffrey.Klein@priority-health.com
Modified: dbd-oracle/trunk/Changes
====================
====================
====================
==================
--- dbd-oracle/trunk/Changes (original)
+++ dbd-oracle/trunk/Changes Fri Mar 31 08:31:22 2006
@@ -1,3 +1,8 @@
+=head1 Changes in DBD-Oracle 1.17 (svn rev 3725) 31th March 2006
+ Added expanded support for Lobs from Jeffrey.Klein@priority-health.com
+ Changed the following dbdimp.c, oci8.c, ocitrace.h, t/31log.t
+
+
=head1 Changes in DBD-Oracle 1.17 (svn rev 2487) 7th February 2006
NOTE: With this release of DBD::Oracle pythian.com (http://www.pythian.com)
Modified: dbd-oracle/trunk/oci8.c
====================
====================
====================
==================
--- dbd-oracle/trunk/oci8.c (original)
+++ dbd-oracle/trunk/oci8.c Fri Mar 31 08:31:22 2006
@@ -729,7 +729,7 @@
phs->out_prepost_exec = lob_phs_post_execute
;
/* accept input LOBs */
- if (sv_derived_from(phs
->sv, "OCILobLocatorPtr")) {
+ if (SvOK(phs->sv) && sv_derived_from(phs->sv, "OCILobLocatorPtr")) {
OCILobLocator *src;
OCILobLocator **dest;
src = INT2PTR(OCILobLocato
r *, SvIV(SvRV(phs->sv)));
|