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

coverity#705507 Dereference null return value

Change-Id: I766d6c98371392a75c7d1097b7a3516a43d3fbe4
üst 2c345da3
......@@ -670,7 +670,9 @@ uno::Sequence< beans::GetDirectPropertyTolerantResult > SAL_CALL SwXTextPortion:
}
else
{
const SfxItemPropertySimpleEntry* pEntry = rPropMap.getByName( pProp[i] );
const SfxItemPropertySimpleEntry* pEntry = rPropMap.getByName( pProp[i] );
if (!pEntry)
throw beans::UnknownPropertyException(OUString( "Unknown property: " ) + pProp[i], static_cast < cppu::OWeakObject * > ( this ) );
aResult.State = pPropertyStates[i];
aResult.Result = beans::TolerantPropertySetResultType::UNKNOWN_FAILURE;
......
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