sd/source/filter/eppt/pptx-epptbase.cxx | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit 22eaef1aedcdb6b10e5fedff508bdd585c0281d4 Author: Caolán McNamara <[email protected]> AuthorDate: Fri Jan 16 16:04:15 2026 +0000 Commit: Michael Stahl <[email protected]> CommitDate: Thu Jan 22 17:22:21 2026 +0100 cid#738815 Uninitialized scalar field Change-Id: I110683bd10c744ea0c057560ed6dd7d84417866d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197466 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Michael Stahl <[email protected]> diff --git a/sd/source/filter/eppt/pptx-epptbase.cxx b/sd/source/filter/eppt/pptx-epptbase.cxx index 8f940e2d2267..b237b8bb46b1 100644 --- a/sd/source/filter/eppt/pptx-epptbase.cxx +++ b/sd/source/filter/eppt/pptx-epptbase.cxx @@ -109,6 +109,7 @@ PPTWriterBase::PPTWriterBase() , mbEmptyPresObj(false) , mbIsBackgroundDark(false) , mnAngle(0) + , mbHasCanvasPage(false) , mnPages(0) , mnMasterPages(0) , mnCanvasMasterIndex(SAL_MAX_UINT32) @@ -130,6 +131,7 @@ PPTWriterBase::PPTWriterBase( const Reference< XModel > & rXModel, , mbEmptyPresObj(false) , mbIsBackgroundDark(false) , mnAngle(0) + , mbHasCanvasPage(false) , mnPages(0) , mnMasterPages(0) , mnCanvasMasterIndex(SAL_MAX_UINT32)
