Opened 6 years ago
Closed 6 years ago
#1739 closed defect (invalid)
invaild r->port_end
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | minor | Milestone: | nginx-1.15 |
Component: | other | Version: | 1.15.x |
Keywords: | Cc: | ||
uname -a: | |||
nginx -V: | 1.15.1 |
Description
Then function ngx_http_parse_request_line never set r->port_start.
When function ngx_http_alloc_large_header_buffer malloc new request line buffer cause r->port_end pointer invalid because r->port_start always NULL.
Note:
See TracTickets
for help on using tickets.
Correct,
r->port_start
is never set. Bothr->port_start
andr->port_end
are never used by the current code, so this is not a problem.