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

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:17:52 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 74985a6c6a1bf452f7a617118c408f35fbd2833d
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 11 04:47:55 2003 +0000

    Fix optimized build bustage.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5751 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/bindings/jni_jsobject.cpp b/JavaScriptCore/bindings/jni_jsobject.cpp
index 68b0a7f..6c0f65d 100644
--- a/JavaScriptCore/bindings/jni_jsobject.cpp
+++ b/JavaScriptCore/bindings/jni_jsobject.cpp
@@ -82,10 +82,10 @@ static CFMutableDictionaryRef getReferencesDictionary(const void *owner)
 static CFMutableDictionaryRef findReferenceDictionary(KJS::ValueImp *imp)
 {
     CFMutableDictionaryRef refsByOwner = getReferencesByOwnerDictionary ();
-    CFMutableDictionaryRef referencesDictionary, foundDictionary = 0;
+    CFMutableDictionaryRef referencesDictionary = 0, foundDictionary = 0;
     
     if (refsByOwner) {
-        const void **allValues;
+        const void **allValues = 0;
         CFIndex count, i;
         
         count = CFDictionaryGetCount(referencesDictionary);
@@ -138,7 +138,7 @@ void removeAllJavaReferencesForOwner (const void *owner)
     CFMutableDictionaryRef referencesDictionary = getReferencesDictionary (owner);
     
     if (referencesDictionary) {
-        void **allImps;
+        void **allImps = 0;
         CFIndex count, i;
         
         count = CFDictionaryGetCount(referencesDictionary);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list