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

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:43:16 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 60281c05153a41a515375925e19bad8ef91864c2
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue May 27 22:03:28 2003 +0000

    	Fix for IB.
    
            Reviewed by Eric Seymour.
    
            * WebView.subproj/WebPreferences.m:
            (-[WebPreferences initWithIdentifier:]):
    	Added retain to uniqued instance.  (As we did recently
    	for initWithCoder:).
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4429 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 350fea7..09aff84 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,14 @@
+2003-05-27  Richard Williamson   <rjw at apple.com>
+
+	Fix for IB.
+
+        Reviewed by Eric Seymour.
+
+        * WebView.subproj/WebPreferences.m:
+        (-[WebPreferences initWithIdentifier:]):
+	Added retain to uniqued instance.  (As we did recently
+	for initWithCoder:). 
+
 2003-05-27  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed: 3270013 - Exception raised when visiting http://www.shutterfly.com/favicon.ico
diff --git a/WebKit/WebView.subproj/WebPreferences.m b/WebKit/WebView.subproj/WebPreferences.m
index 634343d..ee69230 100644
--- a/WebKit/WebView.subproj/WebPreferences.m
+++ b/WebKit/WebView.subproj/WebPreferences.m
@@ -81,7 +81,7 @@ enum { WebPreferencesVersion = 1 };
     WebPreferences *instance = [[self class] _getInstanceForIdentifier:anIdentifier];
     if (instance){
         [self release];
-        return instance;
+        return [instance retain];
     }
 
     _private->values = [[NSMutableDictionary alloc] init];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list