From: Nikolay Sivov <nsivov@codeweavers.com> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=59894 Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> --- dlls/msxml3/tests/domdoc.c | 2 +- dlls/msxml3/xpath.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msxml3/tests/domdoc.c b/dlls/msxml3/tests/domdoc.c index 68def3e7083..77a36b6e4fe 100644 --- a/dlls/msxml3/tests/domdoc.c +++ b/dlls/msxml3/tests/domdoc.c @@ -5347,7 +5347,7 @@ static void test_XPath(void) static const struct query_test node_value_cmp_test[] = { - { "//elem[@min <= 0 and @max >= 0]", "E1.E2.D1 E3.E2.D1", true }, + { "//elem[@min <= 0 and @max >= 0]", "E1.E2.D1 E3.E2.D1" }, { "//elem[0 >= @min and 10 <= @max]", "E1.E2.D1" }, { NULL }, }; diff --git a/dlls/msxml3/xpath.c b/dlls/msxml3/xpath.c index df397283e85..b338dd4ef86 100644 --- a/dlls/msxml3/xpath.c +++ b/dlls/msxml3/xpath.c @@ -4398,7 +4398,7 @@ static bool xpath_compare_values(struct xpath_parser_context *ctxt, bool inf, bo else { if (arg1->type == _XPATH_NODESET) - ret = xpath_compare_nodeset_value(ctxt, !inf, strict, arg1, arg2); + ret = xpath_compare_nodeset_value(ctxt, inf, strict, arg1, arg2); else ret = xpath_compare_nodeset_value(ctxt, !inf, strict, arg2, arg1); } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/11222