[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 06:55:45 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 69b78bcf4be61e47625aaf630d776340a60abc80
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 29 05:29:05 2002 +0000

    	- fixed crash I just introduced
    
            * Plugins.subproj/WebPluginDatabase.m: (-[WebPluginDatabase init]):
    	Remove the release call here. When I added the autorelease, I didn't realize that
    	the caller was doing a release.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2500 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index cb2040f..d43d9e7 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,11 @@
+2002-10-28  Darin Adler  <darin at apple.com>
+
+	- fixed crash I just introduced
+
+        * Plugins.subproj/WebPluginDatabase.m: (-[WebPluginDatabase init]):
+	Remove the release call here. When I added the autorelease, I didn't realize that
+	the caller was doing a release.
+
 2002-10-28  Trey Matteson  <trey at apple.com>
 
 	Fixed 3041616 - Extra page added in back button history
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index cb2040f..d43d9e7 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-10-28  Darin Adler  <darin at apple.com>
+
+	- fixed crash I just introduced
+
+        * Plugins.subproj/WebPluginDatabase.m: (-[WebPluginDatabase init]):
+	Remove the release call here. When I added the autorelease, I didn't realize that
+	the caller was doing a release.
+
 2002-10-28  Trey Matteson  <trey at apple.com>
 
 	Fixed 3041616 - Extra page added in back button history
diff --git a/WebKit/Plugins.subproj/WebPluginDatabase.m b/WebKit/Plugins.subproj/WebPluginDatabase.m
index f1c8680..ae9052a 100644
--- a/WebKit/Plugins.subproj/WebPluginDatabase.m
+++ b/WebKit/Plugins.subproj/WebPluginDatabase.m
@@ -153,15 +153,13 @@ static NSArray *pluginLocations(void)
     }
     
     NSMutableArray *pluginArray = [NSMutableArray arrayWithCapacity:[pluginPaths count]];
-    WebBasePluginPackage *pluginPackage;
     
     for (i = 0; i < [pluginPaths count]; i++) {
-        pluginPackage = [WebBasePluginPackage pluginWithPath:[pluginPaths objectAtIndex:i]];
+        WebBasePluginPackage *pluginPackage = [WebBasePluginPackage pluginWithPath:[pluginPaths objectAtIndex:i]];
         if (pluginPackage) {
             [pluginArray addObject:pluginPackage];
             LOG(Plugins, "Found plugin: %s", [[pluginPackage name] lossyCString]);
             LOG(Plugins, "%s", [[pluginPackage description] lossyCString]);
-            [pluginPackage release];
         }
     }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list