Tag: cws_src680_dba204c User: fs Date: 2006/08/01 06:56:41 Modified: dba/dbaccess/source/core/api/preparedstatement.cxx dba/dbaccess/source/core/api/querydescriptor.cxx dba/dbaccess/source/core/api/resultset.cxx
Log: #i10000# File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: preparedstatement.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/preparedstatement.cxx?r1=1.13.28.1&r2=1.13.28.2 Delta lines: +5 -3 ------------------- --- preparedstatement.cxx 21 Jul 2006 11:02:13 -0000 1.13.28.1 +++ preparedstatement.cxx 1 Aug 2006 13:56:38 -0000 1.13.28.2 @@ -4,9 +4,9 @@ * * $RCSfile: preparedstatement.cxx,v $ * - * $Revision: 1.13.28.1 $ + * $Revision: 1.13.28.2 $ * - * last change: $Author: fs $ $Date: 2006/07/21 11:02:13 $ + * last change: $Author: fs $ $Date: 2006/08/01 13:56:38 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -91,9 +91,11 @@ //-------------------------------------------------------------------------- OPreparedStatement::~OPreparedStatement() { - DBG_DTOR(OPreparedStatement, NULL); + m_pColumns->acquire(); m_pColumns->disposing(); delete m_pColumns; + + DBG_DTOR(OPreparedStatement, NULL); } // com::sun::star::lang::XTypeProvider File [changed]: querydescriptor.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/querydescriptor.cxx?r1=1.28.8.1&r2=1.28.8.2 Delta lines: +5 -3 ------------------- --- querydescriptor.cxx 21 Jul 2006 11:02:13 -0000 1.28.8.1 +++ querydescriptor.cxx 1 Aug 2006 13:56:39 -0000 1.28.8.2 @@ -4,9 +4,9 @@ * * $RCSfile: querydescriptor.cxx,v $ * - * $Revision: 1.28.8.1 $ + * $Revision: 1.28.8.2 $ * - * last change: $Author: fs $ $Date: 2006/07/21 11:02:13 $ + * last change: $Author: fs $ $Date: 2006/08/01 13:56:39 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -200,8 +200,10 @@ //-------------------------------------------------------------------------- OQueryDescriptor_Base::~OQueryDescriptor_Base() { + m_pColumns->acquire(); m_pColumns->disposing(); delete m_pColumns; + DBG_DTOR(OQueryDescriptor_Base,NULL); } // ----------------------------------------------------------------------------- File [changed]: resultset.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/resultset.cxx?r1=1.16.28.1&r2=1.16.28.2 Delta lines: +5 -3 ------------------- --- resultset.cxx 21 Jul 2006 11:02:13 -0000 1.16.28.1 +++ resultset.cxx 1 Aug 2006 13:56:39 -0000 1.16.28.2 @@ -4,9 +4,9 @@ * * $RCSfile: resultset.cxx,v $ * - * $Revision: 1.16.28.1 $ + * $Revision: 1.16.28.2 $ * - * last change: $Author: fs $ $Date: 2006/07/21 11:02:13 $ + * last change: $Author: fs $ $Date: 2006/08/01 13:56:39 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -136,9 +136,11 @@ //-------------------------------------------------------------------------- OResultSet::~OResultSet() { - DBG_DTOR(OResultSet, NULL); + m_pColumns->acquire(); m_pColumns->disposing(); delete m_pColumns; + + DBG_DTOR(OResultSet, NULL); } // com::sun::star::lang::XTypeProvider --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
