wintrust/tests: Initialize a variable.

Hans Leidekker hans at codeweavers.com
Fri Jul 3 04:31:36 CDT 2009


diff --git a/dlls/wintrust/tests/asn.c b/dlls/wintrust/tests/asn.c
index 308fb8b..a4f4fbb 100644
--- a/dlls/wintrust/tests/asn.c
+++ b/dlls/wintrust/tests/asn.c
@@ -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);



More information about the wine-patches mailing list