svgio/source/svgreader/svgstyleattributes.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit a7587def8792dc811d9aa66a462d752130f575d5
Author:     Caolán McNamara <[email protected]>
AuthorDate: Sun May 5 16:39:36 2024 +0100
Commit:     Xisco Fauli <[email protected]>
CommitDate: Mon May 6 13:20:51 2024 +0200

    cid#1596833 Uninitialized pointer field
    
    Change-Id: I1f05ef494e7e28bd105b7658072c33b2d274a803
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167159
    Reviewed-by: Caolán McNamara <[email protected]>
    Tested-by: Jenkins
    (cherry picked from commit 66916b20818e4fc4a25d711b3860b4096e575a5c)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167080
    Reviewed-by: Xisco Fauli <[email protected]>

diff --git a/svgio/source/svgreader/svgstyleattributes.cxx 
b/svgio/source/svgreader/svgstyleattributes.cxx
index 81ef74d62f63..eee09889c226 100644
--- a/svgio/source/svgreader/svgstyleattributes.cxx
+++ b/svgio/source/svgreader/svgstyleattributes.cxx
@@ -1294,7 +1294,8 @@ namespace svgio::svgreader
             maDominantBaseline(DominantBaseline::Auto),
             maResolvingParent(33, 0),
             mbStrokeDasharraySet(false),
-            mbContextStroke(false)
+            mbContextStroke(false),
+            maContextStroke(nullptr)
         {
         }
 

Reply via email to