[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

eric at webkit.org eric at webkit.org
Thu Oct 29 20:31:23 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 289a67b53f50adb4a879e97a8b6ac6e0884ecf0f
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 21 20:37:16 2009 +0000

    2009-09-21  Jedrzej Nowacki  <jedrzej.nowacki at nokia.com>
    
            Reviewed by Eric Seidel.
    
            [Fix] SourceCode's uninitialized member
    
            Potential source of crashes and bugs was fixed. Default constructor
            didn't initialized m_provider member.
    
            https://bugs.webkit.org/show_bug.cgi?id=29364
    
            * parser/SourceCode.h:
            (JSC::SourceCode::SourceCode):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@48593 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 1766555..5a5ceb5 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,17 @@
+2009-09-21  Jedrzej Nowacki  <jedrzej.nowacki at nokia.com>
+
+        Reviewed by Eric Seidel.
+
+        [Fix] SourceCode's uninitialized member
+        
+        Potential source of crashes and bugs was fixed. Default constructor
+        didn't initialized m_provider member.
+
+        https://bugs.webkit.org/show_bug.cgi?id=29364
+
+        * parser/SourceCode.h:
+        (JSC::SourceCode::SourceCode):
+
 2009-09-21  Oliver Hunt  <oliver at apple.com>
 
         Reviewed by Geoff Garen.
diff --git a/JavaScriptCore/parser/SourceCode.h b/JavaScriptCore/parser/SourceCode.h
index 84360b8..9ba4da3 100644
--- a/JavaScriptCore/parser/SourceCode.h
+++ b/JavaScriptCore/parser/SourceCode.h
@@ -37,7 +37,8 @@ namespace JSC {
     class SourceCode {
     public:
         SourceCode()
-            : m_startChar(0)
+            : m_provider(0)
+            , m_startChar(0)
             , m_endChar(0)
             , m_firstLine(0)
         {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list