Bug 334293, nextUpdate used uninitialized in nsCRLInfo::nsCRLInfo if crl->nextUpdate.len == 0

r=rrelyea
This commit is contained in:
kaie%kuix.de 2006-06-30 03:04:10 +00:00
Родитель a967c15213
Коммит 11aa2b0a5d
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -74,8 +74,8 @@ nsCRLInfo::nsCRLInfo(CERTSignedCrl *signedCrl)
nsAutoString nextUpdateLocale;
nsAutoString lastUpdateLocale;
nsCAutoString lastFetchURL;
PRTime lastUpdate;
PRTime nextUpdate;
PRTime lastUpdate = 0;
PRTime nextUpdate = 0;
SECStatus sec_rv;
// Get the information we need here //