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

coverity#1194888 Unchecked return value

Change-Id: Id9478984bdfd11a3cb656e5c8441e1b205282c2b
üst 14dd082b
...@@ -396,7 +396,7 @@ bool SwBaseLink::SwapIn( bool bWaitForData, bool bNativFormat ) ...@@ -396,7 +396,7 @@ bool SwBaseLink::SwapIn( bool bWaitForData, bool bNativFormat )
{ {
OUString aMimeType( SotExchange::GetFormatMimeType( GetContentType() )); OUString aMimeType( SotExchange::GetFormatMimeType( GetContentType() ));
uno::Any aValue; uno::Any aValue;
GetObj()->GetData( aValue, aMimeType, !IsSynchron() && bWaitForData ); (void)GetObj()->GetData( aValue, aMimeType, !IsSynchron() && bWaitForData );
if( bWaitForData && !GetObj() ) if( bWaitForData && !GetObj() )
{ {
......
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