36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From 2ebea3e9f3504ef97ecf8af198cd803a56240fe4 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
|
|
Date: Fri, 27 Mar 2020 09:03:20 +0000
|
|
Subject: [PATCH 5/8] cid#1460969 Uninitialized scalar field
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
multiple ctor's strikes again
|
|
|
|
Change-Id: Ieaae6d5c9e76a3ade17289ce7d1bdffad1168cc9
|
|
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91191
|
|
Tested-by: Jenkins
|
|
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
|
|
(cherry picked from commit 698ecd52e4ca14b5ce633a3358a95992b0dd638c)
|
|
---
|
|
dbaccess/source/core/dataaccess/ModelImpl.cxx | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/dbaccess/source/core/dataaccess/ModelImpl.cxx b/dbaccess/source/core/dataaccess/ModelImpl.cxx
|
|
index d5c3b9b3e086..1f11f3679289 100644
|
|
--- a/dbaccess/source/core/dataaccess/ModelImpl.cxx
|
|
+++ b/dbaccess/source/core/dataaccess/ModelImpl.cxx
|
|
@@ -407,6 +407,7 @@ ODatabaseModelImpl::ODatabaseModelImpl(
|
|
,m_aEmbeddedMacros()
|
|
,m_bModificationLock( false )
|
|
,m_bDocumentInitialized( false )
|
|
+ ,m_nScriptingSignatureState(SignatureState::UNKNOWN)
|
|
,m_aContext( _rxContext )
|
|
,m_sName(_rRegistrationName)
|
|
,m_nLoginTimeout(0)
|
|
--
|
|
2.28.0
|
|
|