diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-07-06 10:58:28 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-07-06 12:28:54 -0500 |
commit | 666737664cef051fa5a118bb8d14f7708b7db8af (patch) | |
tree | fb572f428692bf8d3064689b58f36c00102ac7d2 /src/burn/engine/condition.cpp | |
parent | 0c0bb770717785e0a144272cbd9fe6390452fb64 (diff) | |
download | wix-666737664cef051fa5a118bb8d14f7708b7db8af.tar.gz wix-666737664cef051fa5a118bb8d14f7708b7db8af.tar.bz2 wix-666737664cef051fa5a118bb8d14f7708b7db8af.zip |
Improve whitespace handling in Burn conditions.
Fixes #4702
Diffstat (limited to 'src/burn/engine/condition.cpp')
-rw-r--r-- | src/burn/engine/condition.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/condition.cpp b/src/burn/engine/condition.cpp index b7cd7413..8fa62f16 100644 --- a/src/burn/engine/condition.cpp +++ b/src/burn/engine/condition.cpp | |||
@@ -525,7 +525,7 @@ static HRESULT NextSymbol( | |||
525 | while (L'\0' != pContext->wzRead[0]) | 525 | while (L'\0' != pContext->wzRead[0]) |
526 | { | 526 | { |
527 | ::GetStringTypeW(CT_CTYPE1, pContext->wzRead, 1, &charType); | 527 | ::GetStringTypeW(CT_CTYPE1, pContext->wzRead, 1, &charType); |
528 | if (0 == (C1_BLANK & charType)) | 528 | if (0 == ((C1_BLANK | C1_SPACE) & charType)) |
529 | { | 529 | { |
530 | break; // no blank, done | 530 | break; // no blank, done |
531 | } | 531 | } |