wintrust/tests: Initialize a variable.

This commit is contained in:
Hans Leidekker 2009-07-03 11:31:36 +02:00 committed by Alexandre Julliard
parent 91b6ebefa8
commit 44db8883f8
1 changed files with 4 additions and 0 deletions

View File

@ -725,6 +725,7 @@ static void test_decodeCatNameValue(void)
DWORD size;
CAT_NAMEVALUE *value;
buf = NULL;
ret = pCryptDecodeObjectEx(X509_ASN_ENCODING, CAT_NAMEVALUE_STRUCT,
emptyCatNameValue, sizeof(emptyCatNameValue),
CRYPT_DECODE_ALLOC_FLAG, NULL, &buf, &size);
@ -739,6 +740,7 @@ static void test_decodeCatNameValue(void)
value->Value.cbData);
LocalFree(buf);
}
buf = NULL;
ret = pCryptDecodeObjectEx(X509_ASN_ENCODING, CAT_NAMEVALUE_STRUCT,
catNameValueWithTag, sizeof(catNameValueWithTag),
CRYPT_DECODE_ALLOC_FLAG, NULL, &buf, &size);
@ -754,6 +756,7 @@ static void test_decodeCatNameValue(void)
value->Value.cbData);
LocalFree(buf);
}
buf = NULL;
ret = pCryptDecodeObjectEx(X509_ASN_ENCODING, CAT_NAMEVALUE_STRUCT,
catNameValueWithFlags, sizeof(catNameValueWithFlags),
CRYPT_DECODE_ALLOC_FLAG, NULL, &buf, &size);
@ -768,6 +771,7 @@ static void test_decodeCatNameValue(void)
value->Value.cbData);
LocalFree(buf);
}
buf = NULL;
ret = pCryptDecodeObjectEx(X509_ASN_ENCODING, CAT_NAMEVALUE_STRUCT,
catNameValueWithValue, sizeof(catNameValueWithValue),
CRYPT_DECODE_ALLOC_FLAG, NULL, &buf, &size);