diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-03-11 16:13:09 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-03-11 16:13:52 +0000 |
commit | bcf3897db4f3e58e802a4278e02b636ddafce9a4 (patch) | |
tree | 7cf5a74edf65c6cdaf1746d2eb48871e7eca60cb | |
parent | 3318400ad44a076fcadfd372f1e6c7613769f6be (diff) |
WaE: -Werror=maybe-uninitialized
Change-Id: I20827fc39d49f4dc77b399abb1e0127aac9330db
-rw-r--r-- | sw/source/uibase/dbui/dbmgr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx index bcd75378912a..448c23ad35e9 100644 --- a/sw/source/uibase/dbui/dbmgr.cxx +++ b/sw/source/uibase/dbui/dbmgr.cxx @@ -1167,7 +1167,7 @@ bool SwDBManager::MergeMailFiles(SwWrtShell* pSourceShell, //#i72517# put the styles to the target document //if the source uses headers or footers each new copy need to copy a new page styles - SwPageDesc* pTargetPageDesc; + SwPageDesc* pTargetPageDesc(NULL); if(bPageStylesWithHeaderFooter) { //create a new pagestyle |