shinrich commented on a change in pull request #6721:
URL: https://github.com/apache/trafficserver/pull/6721#discussion_r418569433
##########
File path: proxy/http/HttpSM.cc
##########
@@ -638,19 +638,19 @@ HttpSM::setup_blind_tunnel_port()
if (ssl_vc->get_tunnel_port() > 0) {
t_state.hdr_info.client_request.url_get()->port_set(ssl_vc->get_tunnel_port());
} else {
-
t_state.hdr_info.client_request.url_get()->port_set(t_state.state_machine->ua_txn->get_netvc()->get_local_port());
+
t_state.hdr_info.client_request.url_get()->port_set(netvc->get_local_port());
}
} else {
t_state.hdr_info.client_request.url_get()->host_set(ssl_vc->get_server_name(),
strlen(ssl_vc->get_server_name()));
-
t_state.hdr_info.client_request.url_get()->port_set(t_state.state_machine->ua_txn->get_netvc()->get_local_port());
+
t_state.hdr_info.client_request.url_get()->port_set(netvc->get_local_port());
}
}
} else {
char new_host[INET6_ADDRSTRLEN];
- ats_ip_ntop(t_state.state_machine->ua_txn->get_netvc()->get_local_addr(),
new_host, sizeof(new_host));
+ ats_ip_ntop(netvc->get_local_addr(), new_host, sizeof(new_host));
Review comment:
However clang analyzer points out that you did't verify that netvc isn't
null here. However, I would think the origin chain would have had the same
issue.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]