Fixed ConvertFromPrtime() not initializing return value of icaltimetype properly

This commit is contained in:
mostafah%oeone.com 2002-03-23 00:15:05 +00:00
Родитель 5b665bd83b
Коммит c5559f4391
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -56,7 +56,7 @@ char *EmptyReturn() {
}
icaltimetype ConvertFromPrtime( PRTime indate ) {
icaltimetype outdate;
icaltimetype outdate = icaltime_null_time();
PRExplodedTime ext;
PRInt64 indateinusec, usecpermsec;