mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-25 14:12:13 +00:00
CLEANUP: connection: conn->xprt is never NULL
Let's remove this outdated test that's been there since 1.5. For quite some time now xprt hasn't been NULL anymore on an initialized connection.
This commit is contained in:
parent
70ccb2cddf
commit
8081abe26a
@ -71,7 +71,7 @@ void conn_fd_handler(int fd)
|
|||||||
conn->xprt_done_cb && conn->xprt_done_cb(conn) < 0)
|
conn->xprt_done_cb && conn->xprt_done_cb(conn) < 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (conn->xprt && fd_send_ready(fd) && fd_send_active(fd)) {
|
if (fd_send_ready(fd) && fd_send_active(fd)) {
|
||||||
/* force reporting of activity by clearing the previous flags :
|
/* force reporting of activity by clearing the previous flags :
|
||||||
* we'll have at least ERROR or CONNECTED at the end of an I/O,
|
* we'll have at least ERROR or CONNECTED at the end of an I/O,
|
||||||
* both of which will be detected below.
|
* both of which will be detected below.
|
||||||
@ -99,7 +99,7 @@ void conn_fd_handler(int fd)
|
|||||||
* that we must absolutely test conn->xprt at each step in case it suddenly
|
* that we must absolutely test conn->xprt at each step in case it suddenly
|
||||||
* changes due to a quick unexpected close().
|
* changes due to a quick unexpected close().
|
||||||
*/
|
*/
|
||||||
if (conn->xprt && fd_recv_ready(fd) && fd_recv_active(fd)) {
|
if (fd_recv_ready(fd) && fd_recv_active(fd)) {
|
||||||
/* force reporting of activity by clearing the previous flags :
|
/* force reporting of activity by clearing the previous flags :
|
||||||
* we'll have at least ERROR or CONNECTED at the end of an I/O,
|
* we'll have at least ERROR or CONNECTED at the end of an I/O,
|
||||||
* both of which will be detected below.
|
* both of which will be detected below.
|
||||||
|
Loading…
Reference in New Issue
Block a user