From b30c6f8b9e3410c6428f10d39f5d3c9320915eb7 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Fri, 20 Nov 2009 16:43:57 +0000 Subject: [PATCH] Fixed comment: tcp_pcb_remove does *not* deallocate the pcb --- src/core/tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/tcp.c b/src/core/tcp.c index fffbe555..99b64c7c 100644 --- a/src/core/tcp.c +++ b/src/core/tcp.c @@ -1232,7 +1232,7 @@ tcp_pcb_purge(struct tcp_pcb *pcb) * Purges the PCB and removes it from a PCB list. Any delayed ACKs are sent first. * * @param pcblist PCB list to purge. - * @param pcb tcp_pcb to purge. The pcb itself is also deallocated! + * @param pcb tcp_pcb to purge. The pcb itself is NOT deallocated! */ void tcp_pcb_remove(struct tcp_pcb **pcblist, struct tcp_pcb *pcb)