summaryrefslogtreecommitdiff
path: root/svgio
diff options
context:
space:
mode:
authorCaolán McNamara <caolan.mcnamara@collabora.com>2024-05-05 16:39:36 +0100
committerCaolán McNamara <caolan.mcnamara@collabora.com>2024-05-05 20:21:25 +0200
commit66916b20818e4fc4a25d711b3860b4096e575a5c (patch)
tree046ea0757f7af24bf8fbf29b4420cb52b446868b /svgio
parente756c168c28b54a825bdc7481b47be9a89f7e77e (diff)
cid#1596833 Uninitialized pointer field
Change-Id: I1f05ef494e7e28bd105b7658072c33b2d274a803 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167159 Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'svgio')
-rw-r--r--svgio/source/svgreader/svgstyleattributes.cxx3
1 files changed, 2 insertions, 1 deletions
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)
{
}