sdext/source/pdfimport/inc/genericelements.hxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
New commits: commit 393f24a89187eebaa44d67b5bce0c7e2902b9900 Author: Dr. David Alan Gilbert <[email protected]> AuthorDate: Sun Aug 10 17:46:40 2025 +0100 Commit: David Gilbert <[email protected]> CommitDate: Sun Aug 10 22:01:35 2025 +0200 sdext,pdfimport: cid#1662134: Uninitialized members Change-Id: I2fc93feb4f48bcd8e1d4eaa3f7291878505c813f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/189316 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> Reviewed-by: David Gilbert <[email protected]> diff --git a/sdext/source/pdfimport/inc/genericelements.hxx b/sdext/source/pdfimport/inc/genericelements.hxx index 2f624c388562..5cd4393b0afe 100644 --- a/sdext/source/pdfimport/inc/genericelements.hxx +++ b/sdext/source/pdfimport/inc/genericelements.hxx @@ -174,7 +174,11 @@ namespace pdfi { friend class ElementFactory; GroupElement( Element* pParent, sal_Int32 nGCId ) - : DrawElement( pParent, nGCId ) {} + : DrawElement( pParent, nGCId ) + , isTransparencyGroup(false) + , isForSoftMask(false) + { + } public: virtual void visitedBy( ElementTreeVisitor&, const std::list< std::unique_ptr<Element> >::const_iterator& ) override;
