Kaydet (Commit) 2a20c95e authored tarafından Caolán McNamara's avatar Caolán McNamara

CID#738572 uninitialized members

Change-Id: Ie3614d86e27aab67cfe68bea76de30b775173fb3
üst 1ce66864
......@@ -95,6 +95,7 @@ OResultSet::OResultSet(OCommonStatement* pStmt, const ::boost::shared_ptr< conne
,m_xMetaData(NULL)
,m_nRowPos(0)
,m_nOldRowPos(0)
,m_bWasNull(false)
,m_nFetchSize(0)
,m_nResultSetType(ResultSetType::SCROLL_INSENSITIVE)
,m_nFetchDirection(FetchDirection::FORWARD)
......@@ -107,12 +108,12 @@ OResultSet::OResultSet(OCommonStatement* pStmt, const ::boost::shared_ptr< conne
,m_nParamIndex(0)
,m_bIsAlwaysFalseQuery(sal_False)
,m_pKeySet(NULL)
,m_pSortIndex(NULL)
,m_nNewRow(0)
,m_nUpdatedRow(0)
,m_RowStates(0)
,m_bIsReadOnly(-1)
{
//m_aQuery.setMaxNrOfReturns(pStmt->getOwnConnection()->getMaxResultRecords());
}
// -------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment