sc/source/filter/oox/richstring.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit e9f790e59eec134d6b588241d02d3c2bb82cbc27 Author: Dennis Francis <dennis.fran...@collabora.com> AuthorDate: Mon Aug 23 10:40:09 2021 +0530 Commit: Dennis Francis <dennis.fran...@collabora.com> CommitDate: Mon Aug 23 11:35:17 2021 +0200 cid#1490403: fix wrong initial flag bFound Change-Id: I502653985e54c82198034534bb878d06787f8c94 Signed-off-by: Dennis Francis <dennis.fran...@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120730 Tested-by: Jenkins diff --git a/sc/source/filter/oox/richstring.cxx b/sc/source/filter/oox/richstring.cxx index 7f8809824caa..294fddfbc86a 100644 --- a/sc/source/filter/oox/richstring.cxx +++ b/sc/source/filter/oox/richstring.cxx @@ -85,7 +85,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);