Juan Lang : crypt32: Initialize a variable.

Alexandre Julliard julliard at winehq.org
Fri Nov 2 08:10:20 CDT 2007


Module: wine
Branch: master
Commit: b9e78cc6376495272fd3bf12829116de762db475
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b9e78cc6376495272fd3bf12829116de762db475

Author: Juan Lang <juan.lang at gmail.com>
Date:   Thu Nov  1 10:04:18 2007 -0700

crypt32: Initialize a variable.

---

 dlls/crypt32/tests/encode.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/crypt32/tests/encode.c b/dlls/crypt32/tests/encode.c
index be41587..f5ea461 100644
--- a/dlls/crypt32/tests/encode.c
+++ b/dlls/crypt32/tests/encode.c
@@ -2034,7 +2034,7 @@ static const BYTE constraintWithDomainName[] = { 0x30, 0x32, 0x03, 0x01, 0x00,
 static void test_encodeBasicConstraints(DWORD dwEncoding)
 {
     DWORD i, bufSize = 0;
-    CERT_BASIC_CONSTRAINTS_INFO info;
+    CERT_BASIC_CONSTRAINTS_INFO info = { { 0 } };
     CERT_NAME_BLOB nameBlob = { sizeof(encodedDomainName),
      (LPBYTE)encodedDomainName };
     BOOL ret;




More information about the wine-cvs mailing list