diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-12-01 10:17:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-12-01 13:28:11 +0100 |
commit | ad53629186343f8a111b4bee21721e8b446bd8a2 (patch) | |
tree | 8d0d13242ee3710b49def61433b749d2e43da4a3 /vcl | |
parent | 3b594e1e50bdc2ad374321fa3da304596bb15ffa (diff) |
cid#1202935 Uninitialized scalar field
Change-Id: Ie95426e6188253dd5f2bd77782f62647d9ddba50
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106956
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/print.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/gdi/print.cxx b/vcl/source/gdi/print.cxx index 48338a879ea5..fb3e5de9a95b 100644 --- a/vcl/source/gdi/print.cxx +++ b/vcl/source/gdi/print.cxx @@ -459,6 +459,7 @@ void Printer::ImplInitData() mbPrintFile = false; mbInPrintPage = false; mbNewJobSetup = false; + mbSinglePrintJobs = false; mpInfoPrinter = nullptr; mpPrinter = nullptr; mpDisplayDev = nullptr; |