This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new ba868d8  Fix tunnel crash
ba868d8 is described below

commit ba868d88a3f2ce4c58e48e2b7b5878a45c2922c4
Author: Susan Hinrichs <[email protected]>
AuthorDate: Thu Mar 26 21:56:00 2020 +0000

    Fix tunnel crash
---
 proxy/http/HttpTunnel.cc | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/proxy/http/HttpTunnel.cc b/proxy/http/HttpTunnel.cc
index 4e69d2a..2b7f820 100644
--- a/proxy/http/HttpTunnel.cc
+++ b/proxy/http/HttpTunnel.cc
@@ -906,6 +906,11 @@ HttpTunnel::producer_run(HttpTunnelProducer *p)
   for (c = p->consumer_list.head; c; c = c->link.next) {
     int64_t c_write = consumer_n;
 
+    // Don't bother to set up the consumer if it is dead
+    if (!c->alive) {
+      continue;
+    }
+
     if (!p->alive) {
       // Adjust the amount of chunked data to write if the only data was in 
the initial read
       // The amount to write in some cases is dependent on the type of the 
consumer, so this

Reply via email to