diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-30 20:56:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-30 21:02:47 +0100 |
commit | 3124c258716a6483000d9e217b0e300326683cfe (patch) | |
tree | 0580496f17d1730a23568d631fef7c1855b7eaa0 /sw | |
parent | 503f6b4878562fbd629742ee98d374c2b6f6979b (diff) |
coverity#738881 Uninitialized pointer field
Change-Id: Iecf88297963bd4bf0a5f69f7090ed0bbeb393c89
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/core/uwriter.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sw/qa/core/uwriter.cxx b/sw/qa/core/uwriter.cxx index f17ffcab2b4a..bd6e000e9d02 100644 --- a/sw/qa/core/uwriter.cxx +++ b/sw/qa/core/uwriter.cxx @@ -62,6 +62,11 @@ using namespace ::com::sun::star; class SwDocTest : public test::BootstrapFixture { public: + SwDocTest() + : m_pDoc(NULL) + { + } + virtual void setUp() SAL_OVERRIDE; virtual void tearDown() SAL_OVERRIDE; |