diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-05-14 09:52:43 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-05-14 11:42:18 +0200 |
commit | 7e54baa0645015c0bf687b93edf088091afc3c88 (patch) | |
tree | ed2ae54a9347035b0ba7a436772fd333415672b8 /vcl | |
parent | 78daeef720e49e87652572f7f789c8638e9ee268 (diff) |
Uninitialized SalInstanceWidget::m_bKeyEventListener
Accidentally dropped with 492b0d5d076d38234fea4e4e7c5dbec578296fd2 "weld
conditional formatting"? (Started to CppunitTest_dbaccess_tdf119625 in ASan/
UBSan builds like <https://ci.libreoffice.org/job/lo_ubsan/1269/>.)
Change-Id: I040b0eed9dd386b28674113b416e112c1666747b
Reviewed-on: https://gerrit.libreoffice.org/72267
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/salvtables.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx index 47cce4712db6..b55b735f0f8f 100644 --- a/vcl/source/app/salvtables.cxx +++ b/vcl/source/app/salvtables.cxx @@ -297,6 +297,7 @@ public: , m_pBuilder(pBuilder) , m_bTakeOwnership(bTakeOwnership) , m_bEventListener(false) + , m_bKeyEventListener(false) , m_bMouseEventListener(false) , m_nBlockNotify(0) { |