crypt32/tests: Remove an unused assignment (PVS-Studio).

This commit is contained in:
Michael Stefaniuc 2015-03-04 09:05:54 +01:00 committed by Alexandre Julliard
parent bf65fef8bc
commit 89569b4b34
1 changed files with 1 additions and 1 deletions

View File

@ -2874,7 +2874,7 @@ static void testGetValidUsages(void)
oids[i]);
HeapFree(GetProcessHeap(), 0, oids);
}
numOIDs = size = 0xdeadbeef;
numOIDs = 0xdeadbeef;
/* Oddly enough, this crashes when the number of contexts is not 1:
ret = pCertGetValidUsages(2, contexts, &numOIDs, NULL, &size);
* but setting size to 0 allows it to succeed: