diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-19 14:11:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-19 15:37:58 +0000 |
commit | 9891fcf7c8e88261a5b85b65a7f1f7705a3a26b9 (patch) | |
tree | 711781d8f8d469d8b7316b70141e689d6e6c846b /sd | |
parent | b9122276fa6072316f0fe549e8df4791bf28f33f (diff) |
coverity#708133 Uninitialized pointer field
Change-Id: I4d835ae5d01cf29a86e3515d43b3acd4d7d2bc82
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/func/fupage.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/func/fupage.cxx b/sd/source/ui/func/fupage.cxx index f12f3e1d55f1..57513e706f26 100644 --- a/sd/source/ui/func/fupage.cxx +++ b/sd/source/ui/func/fupage.cxx @@ -112,7 +112,8 @@ FuPage::FuPage( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, mbPageBckgrdDeleted( false ), mbMasterPage( false ), mbDisplayBackgroundTabPage( true ), - mpPage(0) + mpPage(0), + mpDrawViewShell(0) { } |