oox/source/vml/vmlinputstream.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 93ed0bc5ffbf48367923b42ecf9d4913f20d9460 Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Tue Oct 11 15:10:43 2022 +0100 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Wed Oct 12 15:58:46 2022 +0200 vml whitespace-check mangled Částečně to ste n Change-Id: Ib77ca39a5e17c7fb27c8d5204120fb261b885f16 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141185 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> (cherry picked from commit eac884bc84327621498ca2fb9a2a3d67d49d5c91) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141189 diff --git a/oox/source/vml/vmlinputstream.cxx b/oox/source/vml/vmlinputstream.cxx index 93204ac50710..4f94207619f2 100644 --- a/oox/source/vml/vmlinputstream.cxx +++ b/oox/source/vml/vmlinputstream.cxx @@ -42,7 +42,7 @@ const char* lclFindCharacter( const char* pcBeg, const char* pcEnd, char cChar ) bool lclIsWhiteSpace( char cChar ) { - return cChar <= 32; + return cChar >= 0 && cChar <= 32; } const char* lclFindWhiteSpace( const char* pcBeg, const char* pcEnd )