Github user shinrich commented on a diff in the pull request:
https://github.com/apache/trafficserver/pull/1232#discussion_r89840018
--- Diff: proxy/http/HttpTransact.cc ---
@@ -558,7 +558,8 @@ HttpTransact::BadRequest(State *s)
void
HttpTransact::HandleBlindTunnel(State *s)
{
- bool inbound_transparent_p =
s->state_machine->ua_session->get_netvc()->get_is_transparent();
+ NetVConnection *vc = s->state_machine->ua_session->get_netvc();
+ bool inbound_transparent_p = vc->get_is_transparent();
--- End diff --
This change isn't going to protect from a NULL vc dereference. I just
double checked through and it is the change that was made on the master branch,
so the backport is consistent.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---