diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-07-11 19:46:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-07-12 12:17:00 +0200 |
commit | 01fdee33a81d835e0992901644c2dd4e39aee10c (patch) | |
tree | 251e48e0b9d771b5416f3b0562a8510e8f656f61 | |
parent | fbecbb6872db7c40c8d632955589223a6c456475 (diff) |
cid#1465254 Uninitialized pointer field
Change-Id: I256b55e55a9c1bf04f165a4b2de667881d714c59
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98576
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | svtools/source/brwbox/ebbcontrols.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svtools/source/brwbox/ebbcontrols.cxx b/svtools/source/brwbox/ebbcontrols.cxx index 38368899c65a..fc96e14e4de4 100644 --- a/svtools/source/brwbox/ebbcontrols.cxx +++ b/svtools/source/brwbox/ebbcontrols.cxx @@ -350,6 +350,7 @@ namespace svt ControlBase::ControlBase(BrowserDataWin* pParent, const OUString& rUIXMLDescription, const OString& rID) : InterimItemWindow(pParent, rUIXMLDescription, rID) + , m_pWidget(nullptr) // inheritors are expected to call InitControlBase { } |