editeng/source/editeng/impedit.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit a4677551e8c3a7774f039a8344616e5e5b6e402f
Author:     Henry Castro <hcas...@collabora.com>
AuthorDate: Mon May 8 09:17:10 2023 -0400
Commit:     Henry Castro <hcas...@collabora.com>
CommitDate: Tue Jun 20 21:39:32 2023 +0200

    editeng: fix assertion uninitialized enum
    
    constexpr typename o3tl::typed_flags<T>::Wrap operator&(E, E) [with E = 
LOKSpecialFlags; typename o3tl::typed_flags<T>::Wrap = 
o3tl::is_typed_flags<LOKSpecialFlags, 119>::Wrap]: Assertion 
`o3tl::detail::isNonNegative( o3tl::to_underlying(lhs))' failed.
    
    Signed-off-by: Henry Castro <hcas...@collabora.com>
    Change-Id: I8617c877ad2d705988f4dea0e54442e5002a43be
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151533
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>
    (cherry picked from commit cce4ad3dd4d678e1cc6bf7523f5375e10b100147)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151516
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153362
    Tested-by: Jenkins

diff --git a/editeng/source/editeng/impedit.cxx 
b/editeng/source/editeng/impedit.cxx
index ae98b778f4da..2ccb892ab690 100644
--- a/editeng/source/editeng/impedit.cxx
+++ b/editeng/source/editeng/impedit.cxx
@@ -70,7 +70,8 @@ LOKSpecialPositioning::LOKSpecialPositioning(const 
ImpEditView& rImpEditView, Ma
                                              mrImpEditView(rImpEditView),
                                              maOutArea(rOutputArea),
                                              maVisDocStartPos(rVisDocStartPos),
-                                             meUnit(eUnit)
+                                             meUnit(eUnit),
+                                             meFlags(LOKSpecialFlags::NONE)
 {
 }
 

Reply via email to