[Mono-bugs] [Bug 38824][Nor] Changed - we need our own TimeZone code
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Wed, 18 Jun 2003 09:30:30 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by lupus@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=38824
--- shadow/38824 Sat Mar 1 15:47:57 2003
+++ shadow/38824.tmp.20758 Wed Jun 18 09:30:30 2003
@@ -11,13 +11,13 @@
AssignedTo: mono-bugs@ximian.com
ReportedBy: efeingold@mn.rr.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Cc:
-Summary: Infinite loop in ves_icall_System_CurrentTimeZone_GetTimeZoneData
+Summary: we need our own TimeZone code
Please fill in this template when reporting a bug, unless you know what
you are doing.
Description of Problem:
If you call ves_icall_System_CurrentTimeZone_GetTimeZoneData with a year
@@ -112,6 +112,12 @@
if ((year < 1900) || (year > 2100))
mono_raise_exception
(mono_get_exception_not_implemented ());
There must be an easier way of reading the zoneinfo data.
+
+------- Additional Comments From lupus@ximian.com 2003-06-18 09:30 -------
+I added a workaround for the infinite loop in cvs.
+The complete fix is to use the timezone data from
+ftp://elsie.nci.nih.gov/pub/ directly, since libc doesn't provide the
+info we need for this function.