Commit e1c2f18a authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

wininet: Fix a test failure on w2k.

parent fa9a883d
...@@ -436,7 +436,7 @@ static void test_complicated_cookie(void) ...@@ -436,7 +436,7 @@ static void test_complicated_cookie(void)
memset(wbuf, 0xac, sizeof(wbuf)); memset(wbuf, 0xac, sizeof(wbuf));
ret = InternetGetCookieW(testing_example_comW, NULL, wbuf, &len); ret = InternetGetCookieW(testing_example_comW, NULL, wbuf, &len);
ok(ret == TRUE,"InternetGetCookieW failed\n"); ok(ret == TRUE,"InternetGetCookieW failed\n");
ok(len == 19, "len = %u\n", len); ok(len == 19 || broken(len==18), "len = %u\n", len);
ok(lstrlenW(wbuf) == 18, "strlenW(wbuf) = %u\n", lstrlenW(wbuf)); ok(lstrlenW(wbuf) == 18, "strlenW(wbuf) = %u\n", lstrlenW(wbuf));
len = 10; len = 10;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment