crypt32: Fix type of empty in encodeBase64W().

This commit is contained in:
Gerald Pfeifer 2010-03-25 22:55:14 +01:00 committed by Alexandre Julliard
parent b7679da9a7
commit ca41486b8a
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ static LONG encodeBase64W(const BYTE *in_buf, int in_len, LPCWSTR sep,
static BOOL BinaryToBase64W(const BYTE *pbBinary,
DWORD cbBinary, DWORD dwFlags, LPWSTR pszString, DWORD *pcchString)
{
static const WCHAR crlf[] = { '\r','\n',0 }, lf[] = { '\n',0 }, empty = {0};
static const WCHAR crlf[] = { '\r','\n',0 }, lf[] = { '\n',0 }, empty[] = {0};
BOOL ret = TRUE;
LPCWSTR header = NULL, trailer = NULL, sep;
DWORD charsNeeded;