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

coverity#1132662 Dereference after null check

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