From 8db51361dc199c731cb82a06f90b4d2ff8eebfaf Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sun, 19 Jan 2014 15:11:09 -0600 Subject: [PATCH] coverity#1132662 Dereference after null check Change-Id: Iaccf8bb7903702d2bed3c4fc2195172e18ead6c7 --- accessibility/source/standard/vclxaccessiblelist.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accessibility/source/standard/vclxaccessiblelist.cxx b/accessibility/source/standard/vclxaccessiblelist.cxx index f9989047c610..6d2281654420 100644 --- a/accessibility/source/standard/vclxaccessiblelist.cxx +++ b/accessibility/source/standard/vclxaccessiblelist.cxx @@ -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() ) {