forked from Imagelibrary/lwip
fixed that lwip_netconn_do_delconn() did not set msg->err on success (just introduced that bug this weekend...)
This commit is contained in:
@@ -852,6 +852,7 @@ lwip_netconn_do_delconn(struct api_msg_msg *msg)
|
|||||||
} else {
|
} else {
|
||||||
LWIP_ASSERT("blocking connect in progress",
|
LWIP_ASSERT("blocking connect in progress",
|
||||||
(msg->conn->state != NETCONN_CONNECT) || IN_NONBLOCKING_CONNECT(msg->conn));
|
(msg->conn->state != NETCONN_CONNECT) || IN_NONBLOCKING_CONNECT(msg->conn));
|
||||||
|
msg->err = ERR_OK;
|
||||||
/* Drain and delete mboxes */
|
/* Drain and delete mboxes */
|
||||||
netconn_drain(msg->conn);
|
netconn_drain(msg->conn);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user