[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:22:25 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit a956d83b4361b6b616297f56f1a946839c44f931
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 28 23:08:04 2003 +0000

            Reviewed by Ken.
    
    	- fixed 3157318 -- hang at time zone page after clicking on map at www.time.gov
    
            * kjs/date_object.cpp: (KJS::KRFCDate_parseDate): Allow a comma after the day.
            Given how this code is structured, it allows commas in unwanted contexts too, but
            that's almost certainly harmless.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3483 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index b115f97..1f038fa 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,15 @@
 2003-01-28  Darin Adler  <darin at apple.com>
 
+        Reviewed by Ken.
+
+	- fixed 3157318 -- hang at time zone page after clicking on map at www.time.gov
+
+        * kjs/date_object.cpp: (KJS::KRFCDate_parseDate): Allow a comma after the day.
+        Given how this code is structured, it allows commas in unwanted contexts too, but
+        that's almost certainly harmless.
+
+2003-01-28  Darin Adler  <darin at apple.com>
+
         Reviewed by Maciej.
 
         - fixed 3144918 -- Can't drill down multiple levels of categories when selling on ebay
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index b115f97..1f038fa 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,5 +1,15 @@
 2003-01-28  Darin Adler  <darin at apple.com>
 
+        Reviewed by Ken.
+
+	- fixed 3157318 -- hang at time zone page after clicking on map at www.time.gov
+
+        * kjs/date_object.cpp: (KJS::KRFCDate_parseDate): Allow a comma after the day.
+        Given how this code is structured, it allows commas in unwanted contexts too, but
+        that's almost certainly harmless.
+
+2003-01-28  Darin Adler  <darin at apple.com>
+
         Reviewed by Maciej.
 
         - fixed 3144918 -- Can't drill down multiple levels of categories when selling on ebay
diff --git a/JavaScriptCore/kjs/date_object.cpp b/JavaScriptCore/kjs/date_object.cpp
index 96f69b3..b65a849 100644
--- a/JavaScriptCore/kjs/date_object.cpp
+++ b/JavaScriptCore/kjs/date_object.cpp
@@ -871,7 +871,7 @@ time_t KJS::KRFCDate_parseDate(const UString &_date)
      if (!*dateString)
      	return invalidDate;
 
-     if (*dateString == '-')
+     if (*dateString == '-' || *dateString == ',')
      	dateString++;
 
      while(*dateString && isspace(*dateString))

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list