RESOLVED FIXED 11917
setlocale() can return null
https://bugs.webkit.org/show_bug.cgi?id=11917
Summary setlocale() can return null
David Carson
Reported 2006-12-21 10:27:32 PST
According to the spec, http://www.opengroup.org/onlinepubs/007908799/xsh/setlocale.html setlocale() can return null, and it does in some environments. We should check full null when it is being used in date_object.cpp
Attachments
patch to CString (1.60 KB, patch)
2006-12-21 14:26 PST, David Carson
no flags
Patch v2 (1.20 KB, patch)
2007-01-07 21:14 PST, David Kilzer (:ddkilzer)
darin: review+
David Carson
Comment 1 2006-12-21 14:26:18 PST
Created attachment 11956 [details] patch to CString Took the approach that CString should support holding null char pointers. Had no luck with 24fun JSBench giving consistant results with no changes, so the performance impact of this change I am not sure of. Would love feedback from a non-mac port as setlocale() is only used in non-darwin builds.
Darin Adler
Comment 2 2006-12-22 17:48:36 PST
Comment on attachment 11956 [details] patch to CString + length = data = c; We don't normally do multiple assignments on a line like this, and I think it's a little strange to set length to a null pointer to zero it. Instead it should be "length = 0; data = 0;" on two separate lines. Otherwise, looks great. r=me
Darin Adler
Comment 3 2006-12-22 17:49:48 PST
I'm a little concerned about under what circumstances setlocale() would be returning NULL. As far as I know, it only does that when it fails to change the locale, so I think there'd need to be handling for that case other than just leaving the locale as-is.
David Kilzer (:ddkilzer)
Comment 4 2007-01-07 21:08:30 PST
(In reply to comment #3) > I'm a little concerned about under what circumstances setlocale() would be > returning NULL. As far as I know, it only does that when it fails to change the > locale, so I think there'd need to be handling for that case other than just > leaving the locale as-is. Here's a Linux man page for setlocale(): http://man.cx/setlocale(3C) According to this man page, calling setlocale() with a NULL locale (second argument) does not change the locale, but simply returns the current one. Since the oldlocale variable in DateProtoFunc::callAsFunction() in JavaScriptCore/kjs/date_object.cpp is never used again, I'm not sure that code actually does anything. Doing more research, this code originates from r6 (yes, revision 6) when source from kde-2.2 was imported into the then-CVS repository. The original call to setlocale that actually changed the locale and the code that changed the locale back has long since been removed. (See "svn ann -r1023 JavaScriptCore/kjs/date_object.cpp" for enlightenment.)
David Kilzer (:ddkilzer)
Comment 5 2007-01-07 21:10:05 PST
David Kilzer (:ddkilzer)
Comment 6 2007-01-07 21:14:12 PST
Created attachment 12292 [details] Patch v2 Remove dead code.
David Kilzer (:ddkilzer)
Comment 7 2007-01-07 21:14:50 PST
Comment on attachment 11956 [details] patch to CString Clearing darin's r+ flag.
Darin Adler
Comment 8 2007-01-07 21:21:52 PST
Comment on attachment 12292 [details] Patch v2 r=me; clearly the best short term solution to this problem On the other hand, the code probably meant to set the locale to "" or "C" or "POSIX" -- maybe some day we'll find ourselves adding code to do that. We'll need to test date-related tests on platforms other than Mac OS X with the current locale set to exotic ones to find out if that is needed.
David Kilzer (:ddkilzer)
Comment 9 2007-01-07 21:33:31 PST
Committed revision 18658.
Note You need to log in before you can comment on or make changes to this bug.