wininet: Fix a test failure on w2k.

oldstable
Detlef Riekenberg 2013-01-25 14:26:18 +01:00 committed by Alexandre Julliard
parent fa9a883dbb
commit e1c2f18ab1
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ static void test_complicated_cookie(void)
memset(wbuf, 0xac, sizeof(wbuf));
ret = InternetGetCookieW(testing_example_comW, NULL, wbuf, &len);
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));
len = 10;