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

coverity#735334 Unchecked return value

Change-Id: I8023e8c11e76def505568125703f30531161dfa7
üst 63fa3ba8
......@@ -904,7 +904,7 @@ SfxObjectShell* SwDoc::CreateCopy(bool bCallInitNew ) const
pRetShell->DoInitNew();
}
pRet->acquire();
(void)pRet->acquire();
pRet->ReplaceDefaults(*this);
......@@ -924,7 +924,7 @@ SfxObjectShell* SwDoc::CreateCopy(bool bCallInitNew ) const
// remove the temporary shell if it is there as it was done before
pRet->SetTmpDocShell( (SfxObjectShell*)NULL );
pRet->release();
(void)pRet->release();
return pRetShell;
}
......
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