[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
kocienda
kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:36:45 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 7cd0bb79cb5beef7c9117d5d7609ed5976a27edc
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Sep 6 14:17:28 2002 +0000
Declaration and initialization of variable on one line caused unused variable
warning when building under deployment since the only use of the variable was
in a debug statement.
* Plugins.subproj/WebPluginStream.m:
(-[WebNetscapePluginStream receivedError:])
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1981 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index feea718..6f27fd9 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-09-06 Ken Kocienda <kocienda at apple.com>
+
+ Declaration and initialization of variable on one line caused unused variable
+ warning when building under deployment since the only use of the variable was
+ in a debug statement.
+
+ * Plugins.subproj/WebPluginStream.m:
+ (-[WebNetscapePluginStream receivedError:])
+
2002-09-05 Richard Williamson (Local) <rjw at apple.com>
Experiment w/ dragging link label as drag image.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index feea718..6f27fd9 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-09-06 Ken Kocienda <kocienda at apple.com>
+
+ Declaration and initialization of variable on one line caused unused variable
+ warning when building under deployment since the only use of the variable was
+ in a debug statement.
+
+ * Plugins.subproj/WebPluginStream.m:
+ (-[WebNetscapePluginStream receivedError:])
+
2002-09-05 Richard Williamson (Local) <rjw at apple.com>
Experiment w/ dragging link label as drag image.
diff --git a/WebKit/Plugins.subproj/WebPluginStream.m b/WebKit/Plugins.subproj/WebPluginStream.m
index 28fcf3c..39ba756 100644
--- a/WebKit/Plugins.subproj/WebPluginStream.m
+++ b/WebKit/Plugins.subproj/WebPluginStream.m
@@ -189,7 +189,8 @@
{
// Don't report error before we've called NPP_NewStream
if(!isFirstChunk){
- NPError npErr = NPP_DestroyStream(instance, &npStream, error);
+ NPError npErr;
+ npErr = NPP_DestroyStream(instance, &npStream, error);
WEBKITDEBUGLEVEL(WEBKIT_LOG_PLUGINS, "NPP_DestroyStream: %d", npErr);
}
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list