svgio/source/svgreader/svgstyleattributes.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 66916b20818e4fc4a25d711b3860b4096e575a5c Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Sun May 5 16:39:36 2024 +0100 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Sun May 5 20:21:25 2024 +0200 cid#1596833 Uninitialized pointer field Change-Id: I1f05ef494e7e28bd105b7658072c33b2d274a803 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167159 Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> Tested-by: Jenkins diff --git a/svgio/source/svgreader/svgstyleattributes.cxx b/svgio/source/svgreader/svgstyleattributes.cxx index 5da9ea7c4d3c..f694d8b1cfd9 100644 --- a/svgio/source/svgreader/svgstyleattributes.cxx +++ b/svgio/source/svgreader/svgstyleattributes.cxx @@ -1300,7 +1300,8 @@ namespace svgio::svgreader maDominantBaseline(DominantBaseline::Auto), maResolvingParent(33, 0), mbStrokeDasharraySet(false), - mbContextStroke(false) + mbContextStroke(false), + maContextStroke(nullptr) { }