You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2013/09/10 01:53:36 UTC

git commit: initialize HttpTunnelProducer::last_state to a default value

Updated Branches:
  refs/heads/master 1fd225ab3 -> ecd87cff5


initialize HttpTunnelProducer::last_state to a default value


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

Branch: refs/heads/master
Commit: ecd87cff5e54faa836605da72625b0825c0847f4
Parents: 1fd225a
Author: Bryan Call <bc...@apache.org>
Authored: Mon Sep 9 16:53:02 2013 -0700
Committer: Bryan Call <bc...@apache.org>
Committed: Mon Sep 9 16:53:02 2013 -0700

----------------------------------------------------------------------
 proxy/http/HttpTunnel.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/ecd87cff/proxy/http/HttpTunnel.cc
----------------------------------------------------------------------
diff --git a/proxy/http/HttpTunnel.cc b/proxy/http/HttpTunnel.cc
index 8e8ba53..4ba3b33 100644
--- a/proxy/http/HttpTunnel.cc
+++ b/proxy/http/HttpTunnel.cc
@@ -361,7 +361,7 @@ HttpTunnelProducer::HttpTunnelProducer()
     buffer_start(NULL), vc_type(HT_HTTP_SERVER), chunking_action(TCA_PASSTHRU_DECHUNKED_CONTENT),
     do_chunking(false), do_dechunking(false), do_chunked_passthru(false),
     init_bytes_done(0), nbytes(0), ntodo(0), bytes_read(0),
-    handler_state(0), num_consumers(0), alive(false),
+    handler_state(0), last_event(0), num_consumers(0), alive(false),
     read_success(false), flow_control_source(0), name(NULL)
 {
 }