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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:49:10 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit c732b9a54f5c409baa2616e4c293fc72151abe6b
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 8 20:28:24 2004 +0000

    	Fixed: <rdar://problem/3706296> VIP: ifilm.com crashing reproducibly with Safari
    
            Reviewed by kocienda.
    
            * Plugins.subproj/WebNetscapePluginPackage.m:
            (-[WebNetscapePluginPackage launchRealPlayer]): don't release a NULL appURL
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6977 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index ba8cefc..c36947a 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,14 @@
 2004-07-08  Chris Blumenberg  <cblu at apple.com>
 
+	Fixed: <rdar://problem/3706296> VIP: ifilm.com crashing reproducibly with Safari
+
+        Reviewed by kocienda.
+
+        * Plugins.subproj/WebNetscapePluginPackage.m:
+        (-[WebNetscapePluginPackage launchRealPlayer]): don't release a NULL appURL
+
+2004-07-08  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: <rdar://problem/3650140> reproducible assertion failure going to plugin page with JavaScript disabled
 
         Reviewed by john.
diff --git a/WebKit/Plugins.subproj/WebNetscapePluginPackage.m b/WebKit/Plugins.subproj/WebNetscapePluginPackage.m
index 9b9ba71..41694d3 100644
--- a/WebKit/Plugins.subproj/WebNetscapePluginPackage.m
+++ b/WebKit/Plugins.subproj/WebNetscapePluginPackage.m
@@ -330,9 +330,8 @@ static TransitionVector tVectorForFunctionPointer(FunctionPointer);
         URLSpec.launchFlags = kLSLaunchDefaults | kLSLaunchDontSwitch;
         URLSpec.appURL = appURL;
         LSOpenFromURLSpec(&URLSpec, NULL);
+        CFRelease(appURL);
     }
-
-    CFRelease(appURL);
 }
 
 - (BOOL)load

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list