sc/source/filter/oox/richstring.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 084271de40eacdcfa2d789d421e6dee341a692ba Author: Dennis Francis <[email protected]> AuthorDate: Mon Aug 23 10:40:09 2021 +0530 Commit: Andras Timar <[email protected]> CommitDate: Sat Aug 28 09:39:06 2021 +0200 cid#1490403: fix wrong initial flag bFound Change-Id: I502653985e54c82198034534bb878d06787f8c94 Signed-off-by: Dennis Francis <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120859 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Andras Timar <[email protected]> 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);
