[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 08:46:01 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit d6e5af03379108715facfe6d43c9ff4d2e6443c0
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jun 15 06:48:56 2004 +0000

            - fixed crash on boot
    
            * kwq/KWQFoundationExtras.h: (KWQRetainNSRelease):
            Fixed return value of this method; was uninitialized.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6841 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index da0ab90..a30ca0d 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2004-06-14  Darin Adler  <darin at apple.com>
+
+        - fixed crash on boot
+
+        * kwq/KWQFoundationExtras.h: (KWQRetainNSRelease):
+        Fixed return value of this method; was uninitialized.
+
 2004-06-14  Trey Matteson  <trey at apple.com>
 
 	Dashboard wants access to pastboard data during the drag gesture.
diff --git a/WebCore/kwq/KWQFoundationExtras.h b/WebCore/kwq/KWQFoundationExtras.h
index 02e5470..212bf8a 100644
--- a/WebCore/kwq/KWQFoundationExtras.h
+++ b/WebCore/kwq/KWQFoundationExtras.h
@@ -55,7 +55,9 @@ static inline void KWQRelease(id obj)
 
 static inline id KWQRetainNSRelease(id obj)
 {
-    return [KWQRetain(obj) release];
+    KWQRetain(obj);
+    [obj release];
+    return obj;
 }
 
 // Definitions for GC-specific methods for Panther.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list