[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - sc/source

Dennis Francis (via logerrit) logerrit at kemper.freedesktop.org
Sat Aug 28 07:39:53 UTC 2021


 sc/source/filter/oox/richstring.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 084271de40eacdcfa2d789d421e6dee341a692ba
Author:     Dennis Francis <dennis.francis at collabora.com>
AuthorDate: Mon Aug 23 10:40:09 2021 +0530
Commit:     Andras Timar <andras.timar at collabora.com>
CommitDate: Sat Aug 28 09:39:06 2021 +0200

    cid#1490403: fix wrong initial flag bFound
    
    Change-Id: I502653985e54c82198034534bb878d06787f8c94
    Signed-off-by: Dennis Francis <dennis.francis at collabora.com>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120859
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
    Reviewed-by: Andras Timar <andras.timar at collabora.com>

diff --git a/sc/source/filter/oox/richstring.cxx b/sc/source/filter/oox/richstring.cxx
index 1b8126f933f6..ef40b919e908 100644
--- a/sc/source/filter/oox/richstring.cxx
+++ b/sc/source/filter/oox/richstring.cxx
@@ -86,7 +86,7 @@ OUString lcl_unEscapeUnicodeChars(const OUString& rSrc)
         return rSrc;
 
     sal_Int32 nStart = 0;
-    bool bFound = true;
+    bool bFound = false;
     const OUString aPrefix = "_x";
     sal_Int32 nPrefixStart = rSrc.indexOf(aPrefix, nStart);
 


More information about the Libreoffice-commits mailing list