Tag: cws_src680_dba24d User: oj Date: 2007-11-09 13:32:41+0000 Modified: dba/connectivity/source/drivers/jdbc/PreparedStatement.cxx
Log: #i56643# wrong check File Changes: Directory: /dba/connectivity/source/drivers/jdbc/ ================================================= File [changed]: PreparedStatement.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/PreparedStatement.cxx?r1=1.18.54.1&r2=1.18.54.2 Delta lines: +4 -4 ------------------- --- PreparedStatement.cxx 2007-11-06 09:04:02+0000 1.18.54.1 +++ PreparedStatement.cxx 2007-11-09 13:32:39+0000 1.18.54.2 @@ -4,9 +4,9 @@ * * $RCSfile: PreparedStatement.cxx,v $ * - * $Revision: 1.18.54.1 $ + * $Revision: 1.18.54.2 $ * - * last change: $Author: oj $ $Date: 2007/11/06 09:04:02 $ + * last change: $Author: oj $ $Date: 2007/11/09 13:32:39 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -685,7 +685,7 @@ // Java-Call absetzen jclass aClass = t.pEnv->FindClass("java/io/CharArrayInputStream"); static jmethodID mID2 = NULL; - if ( mID2 ) + if ( !mID2 ) mID2 = t.pEnv->GetMethodID( aClass, "<init>", cSignatureStream ); jobject tempObj = NULL; if(mID2) @@ -733,7 +733,7 @@ // Java-Call absetzen jclass aClass = t.pEnv->FindClass("java/io/ByteArrayInputStream"); static jmethodID mID2 = NULL; - if ( mID2 ) + if ( !mID2 ) mID2 = t.pEnv->GetMethodID( aClass, "<init>", cSignatureStream ); jobject tempObj = NULL; if(mID2) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
