diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 15:35:47 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 16:24:38 +0100 |
commit | 5d0562f11f7e438758d44971c02c44f15cb14e79 (patch) | |
tree | 1884f2ab4305215d6cf35a5bd08fd27ab5ceff8e | |
parent | 4e8add43d5461d1752fc73de3ccfaa8d90348b6e (diff) |
coverity#738804 Uninitialized pointer field
Change-Id: I75efc97e77336f8b4be72e3b7b4e8af9bb7c6e06
-rw-r--r-- | sc/source/ui/formdlg/dwfunctr.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/formdlg/dwfunctr.cxx b/sc/source/ui/formdlg/dwfunctr.cxx index fd77fdfb4d82..fcbeada6a061 100644 --- a/sc/source/ui/formdlg/dwfunctr.cxx +++ b/sc/source/ui/formdlg/dwfunctr.cxx @@ -99,7 +99,8 @@ ScFunctionDockWin::ScFunctionDockWin( SfxBindings* pBindingsP, aDDFuncList ( this, ResId( DDLB_FUNC, *rResId.GetResMgr() ) ), aInsertButton ( this, ResId( IMB_INSERT, *rResId.GetResMgr() ) ), aFiFuncDesc ( this, ResId( FI_FUNCDESC, *rResId.GetResMgr() ) ), - aOldSize (0,0) + aOldSize (0,0), + pFuncDesc (NULL) { FreeResource(); InitLRUList(); |