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

coverity#982454 Dereference after null check

Change-Id: I405db209c9277ba47b26d2a0970f4265e190a7c7
üst 9e8ba548
......@@ -667,7 +667,7 @@ IMPL_LINK( SvxPathTabPage, HeaderSelect_Impl, HeaderBar*, pBar )
IMPL_LINK( SvxPathTabPage, HeaderEndDrag_Impl, HeaderBar*, pBar )
{
if ( pBar && !pBar->GetCurItemId() )
if (!pBar || !pBar->GetCurItemId())
return 0;
if ( !pBar->IsItemMode() )
......
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