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

coverity#704075 Unchecked return value

Change-Id: Iacb7ccb17106bd3439c56756eb6d6a4b5969465d
üst d1f9507f
...@@ -1163,8 +1163,8 @@ OUString SwNavigationPI::CreateDropFileName( TransferableDataHelper& rData ) ...@@ -1163,8 +1163,8 @@ OUString SwNavigationPI::CreateDropFileName( TransferableDataHelper& rData )
rData.HasFormat( nFmt = SOT_FORMATSTR_ID_UNIFORMRESOURCELOCATOR )) rData.HasFormat( nFmt = SOT_FORMATSTR_ID_UNIFORMRESOURCELOCATOR ))
{ {
INetBookmark aBkmk( aEmptyOUStr, aEmptyOUStr ); INetBookmark aBkmk( aEmptyOUStr, aEmptyOUStr );
rData.GetINetBookmark( nFmt, aBkmk ); if (rData.GetINetBookmark(nFmt, aBkmk))
sFileName = aBkmk.GetURL(); sFileName = aBkmk.GetURL();
} }
if( !sFileName.isEmpty() ) if( !sFileName.isEmpty() )
{ {
......
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