You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2014/07/15 22:11:58 UTC

git commit: TS-1475 Initialize tag_id etc. Coverity: 1226159

Repository: trafficserver
Updated Branches:
  refs/heads/master 397a2d68c -> 9e8b80cee


TS-1475 Initialize tag_id etc. Coverity: 1226159


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/9e8b80ce
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/9e8b80ce
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/9e8b80ce

Branch: refs/heads/master
Commit: 9e8b80cee95eb5ad1dcda759c8cef4241d6d236b
Parents: 397a2d6
Author: Leif Hedstrom <zw...@apache.org>
Authored: Tue Jul 15 14:11:53 2014 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Tue Jul 15 14:11:56 2014 -0600

----------------------------------------------------------------------
 proxy/PluginVC.cc | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9e8b80ce/proxy/PluginVC.cc
----------------------------------------------------------------------
diff --git a/proxy/PluginVC.cc b/proxy/PluginVC.cc
index f31f1c9..d5d4c07 100644
--- a/proxy/PluginVC.cc
+++ b/proxy/PluginVC.cc
@@ -85,14 +85,12 @@
 
 #define PVC_TYPE    ((vc_type == PLUGIN_VC_ACTIVE) ? "Active" : "Passive")
 
-PluginVC::PluginVC(PluginVCCore *core_obj):
-NetVConnection(),
-magic(PLUGIN_VC_MAGIC_ALIVE), vc_type(PLUGIN_VC_UNKNOWN), core_obj(core_obj),
-other_side(NULL), read_state(), write_state(),
-need_read_process(false), need_write_process(false),
-closed(false), sm_lock_retry_event(NULL), core_lock_retry_event(NULL),
-deletable(false), reentrancy_count(0), active_timeout(0), active_event(NULL),
-inactive_timeout(0), inactive_timeout_at(0), inactive_event(NULL)
+PluginVC::PluginVC(PluginVCCore *core_obj)
+  : NetVConnection(),magic(PLUGIN_VC_MAGIC_ALIVE), vc_type(PLUGIN_VC_UNKNOWN), core_obj(core_obj),
+    other_side(NULL), read_state(), write_state(), need_read_process(false), need_write_process(false),
+    closed(false), sm_lock_retry_event(NULL), core_lock_retry_event(NULL),
+    deletable(false), reentrancy_count(0), active_timeout(0), active_event(NULL),
+    inactive_timeout(0), inactive_timeout_at(0), inactive_event(NULL), plugin_tag(NULL), plugin_id(0)
 {
   ink_assert(core_obj != NULL);
   SET_HANDLER(&PluginVC::main_handler);