crypt32/tests: Remove variable entry which is not really used from test_decodeCRLToBeSigned.

oldstable
Gerald Pfeifer 2010-05-05 00:24:19 +02:00 committed by Alexandre Julliard
parent 34f9b1bc63
commit 52ead99288
1 changed files with 0 additions and 2 deletions

View File

@ -4595,13 +4595,11 @@ static void test_decodeCRLToBeSigned(DWORD dwEncoding)
if (buf)
{
CRL_INFO *info = (CRL_INFO *)buf;
CRL_ENTRY *entry;
ok(size >= sizeof(CRL_INFO), "Wrong size %d\n", size);
ok(info->cCRLEntry == 3, "Expected 3 CRL entries, got %d\n",
info->cCRLEntry);
ok(info->rgCRLEntry != NULL, "Expected a valid CRL entry array\n");
entry = info->rgCRLEntry;
ok(info->cExtension == 2, "Expected 2 extensions, got %d\n",
info->cExtension);
LocalFree(buf);