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

coverity#1314999 Dereference null return value

Change-Id: Ic1ede6f029e0b0f6e6bbf3a6b9e073d98454a769
üst 14c548c2
......@@ -1804,8 +1804,10 @@ bool SwTextNode::TryCharSetExpandToNum(const SfxItemSet& aCharSet)
{
bool bRet = false;
SfxItemIter aIter( aCharSet );
const SfxPoolItem* pItem = aIter.FirstItem();
const sal_uInt16 nWhich = pItem->Which();
const SfxPoolItem* pItem = aIter.FirstItem();
if (!pItem)
return bRet;
const sal_uInt16 nWhich = pItem->Which();
const SfxPoolItem& rInnerItem = GetAttr(nWhich,false);
......
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