[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 07:32:08 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 17b88493841fd00d2e6c574a2c24ca67bbbb0b60
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Mar 27 23:38:22 2003 +0000

            Left out a "!" in my last check-in.
    
    	* Plugins.subproj/WebNetscapePluginPackage.m:
            (-[WebNetscapePluginPackage load]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3950 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 9576eca..23822ec 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,13 @@
 2003-03-27  Chris Blumenberg  <cblu at apple.com>
 
+        Left out a "!" in my last check-in.
+
+	* Plugins.subproj/WebNetscapePluginPackage.m:
+        (-[WebNetscapePluginPackage load]):
+
+
+2003-03-27  Chris Blumenberg  <cblu at apple.com>
+
 	- Allow Netscape plug-ins that don't have resource files to load in Safari.
 	- Added more error handling when loading plug-ins.
 
diff --git a/WebKit/Plugins.subproj/WebNetscapePluginPackage.m b/WebKit/Plugins.subproj/WebNetscapePluginPackage.m
index 37f1563..6fd5fe1 100644
--- a/WebKit/Plugins.subproj/WebNetscapePluginPackage.m
+++ b/WebKit/Plugins.subproj/WebNetscapePluginPackage.m
@@ -342,7 +342,7 @@ static TransitionVector tVectorForFunctionPointer(FunctionPointer);
             NP_Initialize = (NP_InitializeFuncPtr)CFBundleGetFunctionPointerForName(cfBundle, CFSTR("NP_Initialize"));
             NP_GetEntryPoints = (NP_GetEntryPointsFuncPtr)CFBundleGetFunctionPointerForName(cfBundle, CFSTR("NP_GetEntryPoints"));
             NPP_Shutdown = (NPP_ShutdownProcPtr)CFBundleGetFunctionPointerForName(cfBundle, CFSTR("NP_Shutdown"));
-            if (NP_Initialize || !NP_GetEntryPoints || !NPP_Shutdown) {
+            if (!NP_Initialize || !NP_GetEntryPoints || !NPP_Shutdown) {
                 goto abort;
             }
         }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list