[Libreoffice-commits] core.git: vcl/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Wed Sep 15 09:28:17 UTC 2021
vcl/source/filter/imet/ios2met.cxx | 10 ++++++++++
1 file changed, 10 insertions(+)
New commits:
commit 88a6ac9f75a4375b72111af5a3e004bef4226455
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Wed Sep 15 08:55:41 2021 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Wed Sep 15 11:27:43 2021 +0200
ofz: MemorySanitizer: use-of-uninitialized-value
Change-Id: I5ae6f55789eebdc688ead4524a7af7a7739314bf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122110
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/vcl/source/filter/imet/ios2met.cxx b/vcl/source/filter/imet/ios2met.cxx
index a9c7a2cdde96..d80a8e5d1cc7 100644
--- a/vcl/source/filter/imet/ios2met.cxx
+++ b/vcl/source/filter/imet/ios2met.cxx
@@ -231,6 +231,16 @@ struct OSArea {
RasterOp eMix;
RasterOp eBgMix;
bool bFill;
+
+ OSArea()
+ : pSucc(nullptr)
+ , nFlags(0)
+ , bClosed(false)
+ , eMix(RasterOp::OverPaint)
+ , eBgMix(RasterOp::OverPaint)
+ , bFill(false)
+ {
+ }
};
struct OSPath
More information about the Libreoffice-commits
mailing list