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

coverity#1397041 Unchecked return value

Change-Id: Ia8c601475bea142faad9c1f1e9b797d0ebc13679
üst 510f497f
......@@ -276,12 +276,12 @@ void OFileAccess::transferImpl( const OUString& rSource,
try
{
aDestPath.transferContent( aSrc,
bMoveData
? ucbhelper::InsertOperation_MOVE
: ucbhelper::InsertOperation_COPY,
aName,
css::ucb::NameClash::OVERWRITE );
(void)aDestPath.transferContent(aSrc,
bMoveData
? ucbhelper::InsertOperation_MOVE
: ucbhelper::InsertOperation_COPY,
aName,
css::ucb::NameClash::OVERWRITE);
}
catch ( css::ucb::CommandFailedException const & )
{
......
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