Increased availability by removing TCP active-close show-stopper. Leaving pbuf memory leak in for now.

This commit is contained in:
christiaans 2005-10-12 11:03:58 +00:00
parent ca90f6fce9
commit 60022e1687

View File

@ -132,7 +132,7 @@ echo_recv(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err)
es = arg;
if (p == NULL) {
if ((es == NULL) || (p == NULL)) {
close_conn(pcb, es);
return ERR_OK;
}