This commit is contained in:
sdwilsh%shawnwilsher.com 2007-07-11 21:20:11 +00:00
Родитель b81049b78e
Коммит e3db1cf1a7
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -618,12 +618,12 @@ nsPrincipal::GetHashValue(PRUint32* aValue)
// If there is a certificate, it takes precendence over the codebase.
if (mCert) {
*aValue = nsCRT::HashCode(mCert->fingerprint.get(), nsnull);
*aValue = nsCRT::HashCode(mCert->fingerprint.get());
}
else {
nsCAutoString str;
mCodebase->GetSpec(str);
*aValue = nsCRT::HashCode(str.get(), nsnull);
*aValue = nsCRT::HashCode(str.get());
}
return NS_OK;