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

coverity#1242428 Explicit null dereferenced

Change-Id: I107aed3c0fb9f558473777eb5613465c7d60f2be
üst 66d105b1
......@@ -707,7 +707,7 @@ void ScConflictsDlg::UpdateView()
ScChangeActionList::const_iterator aEndOwn = aItr->maOwnActions.end();
for ( ScChangeActionList::const_iterator aItrOwn = aItr->maOwnActions.begin(); aItrOwn != aEndOwn; ++aItrOwn )
{
ScChangeAction* pAction = mpOwnTrack->GetAction( *aItrOwn );
ScChangeAction* pAction = mpOwnTrack ? mpOwnTrack->GetAction(*aItrOwn) : NULL;
if ( pAction )
{
// only display own top content entries
......
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