Bug 274336: initialize mIsDate, because we can take some paths through

normalize and whatnot that give us a "valid" date while still having
uninitialized stack garbage in mIsDate. r=vlad
This commit is contained in:
shaver%mozilla.org 2004-12-13 10:09:38 +00:00
Родитель 4cf75d27d9
Коммит 8ba0444bbf
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -65,6 +65,7 @@ calDateTime::calDateTime()
mWeekday = 0;
mYearday = 0;
mTimezoneOffset = 0;
mIsDate = PR_FALSE;
}
calDateTime::calDateTime(struct icaltimetype *atimeptr)