cryptnet/tests: Change the scope of a variable from global to local.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2020-10-22 12:45:59 +02:00 committed by Alexandre Julliard
parent 5bdc6e0fe6
commit c7c49ab57d
1 changed files with 1 additions and 2 deletions

View File

@ -99,11 +99,10 @@ static void compareUrlArray(const CRYPT_URL_ARRAY *expected,
}
}
static WCHAR url[] =
{ 'h','t','t','p',':','/','/','w','i','n','e','h','q','.','o','r','g',0 };
static void test_getObjectUrl(void)
{
static WCHAR url[] = L"http://winehq.org";
BOOL ret;
DWORD urlArraySize = 0, infoSize = 0;
PCCERT_CONTEXT cert;