Kaydet (Commit) 8db51361 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#1132662 Dereference after null check

Change-Id: Iaccf8bb7903702d2bed3c4fc2195172e18ead6c7
üst 9fd10cca
......@@ -281,7 +281,7 @@ void VCLXAccessibleList::UpdateSelection_Impl_Acc(bool b_IsDropDownList)
{
//VCLXAccessibleDropdownListBox
//when in list is dropped down, xText = NULL
if (m_pListBoxHelper->IsInDropDown())
if (m_pListBoxHelper && m_pListBoxHelper->IsInDropDown())
{
if ( aNewValue.hasValue() || aOldValue.hasValue() )
{
......
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