From 2c570973cc9e206539e7177efcac27569deef62d Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Mon, 18 Feb 2013 00:32:26 -0600 Subject: coverity#707602 Uninitialized pointer field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I70fa5899f3bb1eeb22eb18d77f2c816ec60aa97c Reviewed-on: https://gerrit.libreoffice.org/2212 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- accessibility/source/standard/vclxaccessibletabpagewindow.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'accessibility/source/standard') diff --git a/accessibility/source/standard/vclxaccessibletabpagewindow.cxx b/accessibility/source/standard/vclxaccessibletabpagewindow.cxx index 03aac5a9cd35..386583204f10 100644 --- a/accessibility/source/standard/vclxaccessibletabpagewindow.cxx +++ b/accessibility/source/standard/vclxaccessibletabpagewindow.cxx @@ -37,6 +37,8 @@ VCLXAccessibleTabPageWindow::VCLXAccessibleTabPageWindow( VCLXWindow* pVCLXWindo :VCLXAccessibleComponent( pVCLXWindow ) { m_pTabPage = static_cast< TabPage* >( GetWindow() ); + m_pTabControl = 0; + m_nPageId = 0; if ( m_pTabPage ) { Window* pParent = m_pTabPage->GetAccessibleParentWindow(); -- cgit