summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-12-08 13:43:56 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-12-08 13:49:03 +0000
commitd15d0ec6de566f8a2dc2e9c575ecf4e19c070ade (patch)
treebe01d543ea94774892b63077785bff7de3fb7c24 /sd
parentf137588d0d8605ab48e2a7a8675784f965a230a7 (diff)
coverity#1257112 Uninitialized scalar field
Change-Id: I79063c103707e91f04c22a284f7af035fef6d21d
Diffstat (limited to 'sd')
-rw-r--r--sd/source/core/sdpage2.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sd/source/core/sdpage2.cxx b/sd/source/core/sdpage2.cxx
index 57f46990f44e..5b4987f6ce80 100644
--- a/sd/source/core/sdpage2.cxx
+++ b/sd/source/core/sdpage2.cxx
@@ -402,6 +402,8 @@ SdPage::SdPage(const SdPage& rSrcPage)
meOrientation = rSrcPage.meOrientation;
mpPageLink = NULL; // is set when inserting via ConnectLink()
+
+ mbIsPrecious = false;
}
void SdPage::lateInit(const SdPage& rSrcPage)