mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 03:16:18 +00:00
Forgot to add LWIP_ASSERT_CORE_LOCKED() to http_continue function
This commit is contained in:
parent
653313cb37
commit
46cb0a796b
@ -1894,6 +1894,7 @@ static void
|
|||||||
http_continue(void *connection)
|
http_continue(void *connection)
|
||||||
{
|
{
|
||||||
struct http_state *hs = (struct http_state *)connection;
|
struct http_state *hs = (struct http_state *)connection;
|
||||||
|
LWIP_ASSERT_CORE_LOCKED();
|
||||||
if (hs && (hs->pcb) && (hs->handle)) {
|
if (hs && (hs->pcb) && (hs->handle)) {
|
||||||
LWIP_ASSERT("hs->pcb != NULL", hs->pcb != NULL);
|
LWIP_ASSERT("hs->pcb != NULL", hs->pcb != NULL);
|
||||||
LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("httpd_continue: try to send more data\n"));
|
LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("httpd_continue: try to send more data\n"));
|
||||||
|
Loading…
Reference in New Issue
Block a user