[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

hausmann at webkit.org hausmann at webkit.org
Wed Dec 22 13:20:52 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit b7c8ce20cb8128a417b17a4a7e8392f125f48e53
Author: hausmann at webkit.org <hausmann at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Sep 12 13:25:25 2010 +0000

    Fix compiler warning.
    
    Reviewed by Andreas Kling.
    
    NPClass has 13 members, the last one (NPConstructFunctionPtr construct) wasn't
    initialized explicitly.
    
    * bindings/v8/NPV8Object.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67321 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 419fa48..a7860cd 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-09-12  Simon Hausmann  <simon.hausmann at nokia.com>
+
+        Reviewed by Andreas Kling.
+
+        Fix compiler warning.
+
+        NPClass has 13 members, the last one (NPConstructFunctionPtr construct) wasn't
+        initialized explicitly.
+
+        * bindings/v8/NPV8Object.cpp:
+
 2010-09-12  Mario Sanchez Prada  <msanchez at igalia.com>
 
         Reviewed by Martin Robinson.
diff --git a/WebCore/bindings/v8/NPV8Object.cpp b/WebCore/bindings/v8/NPV8Object.cpp
index a25a5eb..1ec5e06 100644
--- a/WebCore/bindings/v8/NPV8Object.cpp
+++ b/WebCore/bindings/v8/NPV8Object.cpp
@@ -107,7 +107,7 @@ NPObject* v8ObjectToNPObject(v8::Handle<v8::Object> object)
 static NPClass V8NPObjectClass = { NP_CLASS_STRUCT_VERSION,
                                    allocV8NPObject,
                                    freeV8NPObject,
-                                   0, 0, 0, 0, 0, 0, 0, 0, 0 };
+                                   0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
 
 // NPAPI's npruntime functions.
 NPClass* npScriptObjectClass = &V8NPObjectClass;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list