Module: wine Branch: master Commit: b9e78cc6376495272fd3bf12829116de762db475 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b9e78cc6376495272fd3bf1282...
Author: Juan Lang juan.lang@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;