sd/source/filter/eppt/pptx-text.cxx | 1 + vcl/source/gdi/virdev.cxx | 3 +++ 2 files changed, 4 insertions(+)
New commits: commit caf833b67c03c419322c88732d4eed7cdaf55cc0 Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Sat Feb 26 15:22:41 2022 +0000 Commit: Caolán McNamara <caol...@redhat.com> CommitDate: Sat Feb 26 20:04:55 2022 +0100 cid#1500598 Uninitialized scalar field Change-Id: I732117dae2b383356dc58b5f47e52f6e722e991d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130595 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caol...@redhat.com> diff --git a/sd/source/filter/eppt/pptx-text.cxx b/sd/source/filter/eppt/pptx-text.cxx index 14b760e4d3e7..4fad12a0871b 100644 --- a/sd/source/filter/eppt/pptx-text.cxx +++ b/sd/source/filter/eppt/pptx-text.cxx @@ -651,6 +651,7 @@ ParagraphObj::ParagraphObj(const css::uno::Reference< css::beans::XPropertySet > : mnTextSize(0) , mbFirstParagraph(false) , mbLastParagraph(false) + , meBullet(css::beans::PropertyState_AMBIGUOUS_VALUE) , mnTextAdjust(0) , mnLineSpacing(0) , mbFixedLineSpacing(false) commit b6b9c6ebf66c1fa8f35d82d149aa108d91a86ba0 Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Sat Feb 26 15:20:21 2022 +0000 Commit: Caolán McNamara <caol...@redhat.com> CommitDate: Sat Feb 26 20:04:42 2022 +0100 cid#1500651 Uninitialized scalar field Change-Id: If22e0931c13c6945640264c55edb1af52b2c4187 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130594 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caol...@redhat.com> diff --git a/vcl/source/gdi/virdev.cxx b/vcl/source/gdi/virdev.cxx index 87721c683d77..1aec06239913 100644 --- a/vcl/source/gdi/virdev.cxx +++ b/vcl/source/gdi/virdev.cxx @@ -129,6 +129,9 @@ void VirtualDevice::ImplInitVirDev( const OutputDevice* pOutDev, meRefDevMode = RefDevMode::NONE; mbForceZeroExtleadBug = false; + mnBitCount = 0; + mbScreenComp = false; + bool bErase = nDX > 0 && nDY > 0;