diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-19 14:21:44 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-19 15:37:59 +0000 |
commit | d1a8a119f267f0eda36dc28fece111a1b6c0b6ec (patch) | |
tree | 98fd2c7f4897d71b04469f9924df18b77aa79b63 /svtools | |
parent | 60211f44fd1fe27497f1a599091437a65ca4094b (diff) |
coverity#708279 Uninitialized pointer field
Change-Id: I65b245c3f262f2ad2665e7d0c3c246104e36eacd
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/config/printoptions.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svtools/source/config/printoptions.cxx b/svtools/source/config/printoptions.cxx index 53fb5ef07cc8..fc0f0c1cc5d2 100644 --- a/svtools/source/config/printoptions.cxx +++ b/svtools/source/config/printoptions.cxx @@ -504,6 +504,7 @@ void SvtPrintOptions_Impl::impl_setValue (const OUString& sProp, } SvtBasePrintOptions::SvtBasePrintOptions() + : m_pDataContainer(NULL) { } |