Module: wine Branch: master Commit: 52ead99288c810370adadf0342202ad9e26e3453 URL: http://source.winehq.org/git/wine.git/?a=commit;h=52ead99288c810370adadf0342...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Wed May 5 00:24:19 2010 +0200
crypt32/tests: Remove variable entry which is not really used from test_decodeCRLToBeSigned.
---
dlls/crypt32/tests/encode.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/dlls/crypt32/tests/encode.c b/dlls/crypt32/tests/encode.c index 1c33aee..d60843a 100644 --- a/dlls/crypt32/tests/encode.c +++ b/dlls/crypt32/tests/encode.c @@ -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);