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

coverity#1194890 Unchecked return value

Change-Id: I7c1e74f5c685f10d7eba8afb7acb60d2c2e9906b
üst b3b8c56d
...@@ -2983,7 +2983,7 @@ void SfxBaseModel::impl_store( const OUString& sURL ...@@ -2983,7 +2983,7 @@ void SfxBaseModel::impl_store( const OUString& sURL
} }
uno::Sequence< beans::NamedValue > aOldEncryptionData; uno::Sequence< beans::NamedValue > aOldEncryptionData;
GetEncryptionData_Impl( pMedium->GetItemSet(), aOldEncryptionData ); (void)GetEncryptionData_Impl( pMedium->GetItemSet(), aOldEncryptionData );
if ( !aOldEncryptionData.getLength() && !aNewEncryptionData.getLength() ) if ( !aOldEncryptionData.getLength() && !aNewEncryptionData.getLength() )
throw; throw;
......
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