[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 06:34:50 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 7a0cc4dee80a9210e48f80b43612ab391323bba7
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 28 00:14:03 2002 +0000

    	- fixed 3031952 -- null-dereference in dispatchToUInt32 closing window
    
            * khtml/ecma/kjs_window.cpp: (History::getValueProperty):
    	Use Undefined(), not Value() for an error result. Value() is pure evil.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1921 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 7b50889..c1be322 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,12 @@
 2002-08-27  Darin Adler  <darin at apple.com>
 
+	- fixed 3031952 -- null-dereference in dispatchToUInt32 closing window
+
+        * khtml/ecma/kjs_window.cpp: (History::getValueProperty):
+	Use Undefined(), not Value() for an error result. Value() is pure evil.
+
+2002-08-27  Darin Adler  <darin at apple.com>
+
 	- fixed 3021018 -- Crash selecting from popup just after choosing radio button
 
         * kwq/KWQComboBox.mm:
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 7b50889..c1be322 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,12 @@
 2002-08-27  Darin Adler  <darin at apple.com>
 
+	- fixed 3031952 -- null-dereference in dispatchToUInt32 closing window
+
+        * khtml/ecma/kjs_window.cpp: (History::getValueProperty):
+	Use Undefined(), not Value() for an error result. Value() is pure evil.
+
+2002-08-27  Darin Adler  <darin at apple.com>
+
 	- fixed 3021018 -- Crash selecting from popup just after choosing radio button
 
         * kwq/KWQComboBox.mm:
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 7b50889..c1be322 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,12 @@
 2002-08-27  Darin Adler  <darin at apple.com>
 
+	- fixed 3031952 -- null-dereference in dispatchToUInt32 closing window
+
+        * khtml/ecma/kjs_window.cpp: (History::getValueProperty):
+	Use Undefined(), not Value() for an error result. Value() is pure evil.
+
+2002-08-27  Darin Adler  <darin at apple.com>
+
 	- fixed 3021018 -- Crash selecting from popup just after choosing radio button
 
         * kwq/KWQComboBox.mm:
diff --git a/WebCore/khtml/ecma/kjs_window.cpp b/WebCore/khtml/ecma/kjs_window.cpp
index a874a1c..4c52bf6 100644
--- a/WebCore/khtml/ecma/kjs_window.cpp
+++ b/WebCore/khtml/ecma/kjs_window.cpp
@@ -1750,7 +1750,7 @@ Value History::getValueProperty(ExecState *, int token) const
 #endif
   default:
     kdWarning() << "Unhandled token in History::getValueProperty : " << token << endl;
-    return Value();
+    return Undefined();
   }
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list