crypt32: Remove a test with a binary result that behaves differently across platforms.

This commit is contained in:
James Hawkins 2008-09-02 00:54:48 -05:00 committed by Alexandre Julliard
parent 3dedb0fdba
commit f5dd6d23ed
1 changed files with 1 additions and 2 deletions

View File

@ -200,8 +200,7 @@ static void test_cryptAllocate(void)
buf = CryptMemAlloc(0);
ok(buf != NULL, "CryptMemAlloc failed: %08x\n", GetLastError());
CryptMemFree(buf);
buf = CryptMemRealloc(NULL, 0);
ok(!buf, "Expected NULL\n");
/* CryptMemRealloc(NULL, 0) fails pre-Vista */
buf = CryptMemAlloc(0);
buf = CryptMemRealloc(buf, 1);
ok(buf != NULL, "CryptMemRealloc failed: %08x\n", GetLastError());