[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lwip-devel] [bug #25705] Memory Leak in HTTPD.C
From: |
Simon Goldschmidt |
Subject: |
[lwip-devel] [bug #25705] Memory Leak in HTTPD.C |
Date: |
Sun, 01 Mar 2009 17:51:22 +0000 |
User-agent: |
Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; de; rv:1.9.0.6) Gecko/2009011912 Firefox/3.0.6 |
Update of bug #25705 (project lwip):
Item Group: None => Faulty Behaviour
Status: None => Fixed
Assigned to: None => goldsimon
Open/Closed: Open => Closed
_______________________________________________________
Follow-up Comment #5:
I think both suggested patches are correct, I've checked in this:
if ((hs == NULL) && (pcb->state == ESTABLISHED)) {
tcp_abort(pcb);
return ERR_ABRT;
} else if (hs != NULL) {
++hs->retries;
if (hs->retries == 4) {
tcp_arg(pcb, NULL);
mem_free(hs);
tcp_abort(pcb);
return ERR_ABRT;
}
send_data(pcb, hs);
}
_______________________________________________________
Reply to this item at:
<http://savannah.nongnu.org/bugs/?25705>
_______________________________________________
Nachricht geschickt von/durch Savannah
http://savannah.nongnu.org/
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [lwip-devel] [bug #25705] Memory Leak in HTTPD.C,
Simon Goldschmidt <=