summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-07-11 19:42:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-07-11 22:28:36 +0200
commitacaa81b62659f5a69a58bd59dfa1b3422da9ee56 (patch)
tree1ea593e3e6a27e85f158417898bc7a26151c73dc /svtools
parenta26351a17cd79bc7776d868b1d0eb14b6c6647d6 (diff)
cid#1465258 Uninitialized pointer field
Change-Id: Ie2646cecfcbf85cc2b24d06786ed9773fcbb7c56 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98574 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/brwbox/ebbcontrols.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/svtools/source/brwbox/ebbcontrols.cxx b/svtools/source/brwbox/ebbcontrols.cxx
index f26c7e013ad0..38368899c65a 100644
--- a/svtools/source/brwbox/ebbcontrols.cxx
+++ b/svtools/source/brwbox/ebbcontrols.cxx
@@ -387,6 +387,7 @@ namespace svt
EditControlBase::EditControlBase(BrowserDataWin* pParent)
: ControlBase(pParent, "svt/ui/thineditcontrol.ui", "EditControl") // *thin*editcontrol has no frame/border
+ , m_pEntry(nullptr) // inheritors are expected to call InitEditControlBase
{
}