fix two "might be used uninitialized" warnings from NTLM patch, bug=224653.

This commit is contained in:
darin%meer.net 2003-11-19 05:00:43 +00:00
Родитель eb21d36254
Коммит d7ce33ed84
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -110,6 +110,7 @@ nsHttpNTLMAuth::GenerateCredentials(nsIHttpChannel *httpChannel,
if (NS_FAILED(rv))
return rv;
inBufLen = 0;
inBuf = nsnull;
}
else {

Просмотреть файл

@ -768,7 +768,7 @@ des_encrypt(const PRUint8 *key, const PRUint8 *src, PRUint8 *hash)
PK11SlotInfo *slot = nsnull;
PK11SymKey *symkey = nsnull;
PK11Context *ctxt = nsnull;
SECItem keyItem, *param;
SECItem keyItem, *param = nsnull;
SECStatus rv;
unsigned int n;