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

coverity#1242904 error code overwritten

Change-Id: Ie5dcc39f05d7fd21a873ac95ca9cc7f00c1961df
üst a165aa38
...@@ -1884,7 +1884,8 @@ void SAL_CALL SfxBaseModel::load( const Sequence< beans::PropertyValue >& seqA ...@@ -1884,7 +1884,8 @@ void SAL_CALL SfxBaseModel::load( const Sequence< beans::PropertyValue >& seqA
m_pData->m_pObjectShell->PrepareSecondTryLoad_Impl(); m_pData->m_pObjectShell->PrepareSecondTryLoad_Impl();
if ( !m_pData->m_pObjectShell->DoLoad(pMedium) ) if ( !m_pData->m_pObjectShell->DoLoad(pMedium) )
nError=ERRCODE_IO_GENERAL; nError=ERRCODE_IO_GENERAL;
nError = m_pData->m_pObjectShell->GetErrorCode(); if (m_pData->m_pObjectShell->GetErrorCode())
nError = m_pData->m_pObjectShell->GetErrorCode();
} }
} }
......
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