Kaydet (Commit) e681622f authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud Kaydeden (comit) Andras Timar

coverity#704551 Dereference after null check

Change-Id: I47aa14ba58d993fa8ed20c8f0d99e92f18dc53e6
Reviewed-on: https://gerrit.libreoffice.org/2214Reviewed-by: 's avatarAndras Timar <atimar@suse.com>
Tested-by: 's avatarAndras Timar <atimar@suse.com>
üst 2eef9126
......@@ -559,7 +559,10 @@ IMPL_LINK( MediaControl, implSelectHdl, ToolBox*, p )
}
update();
p->Invalidate( INVALIDATE_UPDATE );
if(p)
{
p->Invalidate( INVALIDATE_UPDATE );
}
return 0;
}
......
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