Forgot to add LWIP_ASSERT_CORE_LOCKED() to http_continue function

This commit is contained in:
Dirk Ziegelmeier 2018-01-12 13:35:20 +01:00
parent 653313cb37
commit 46cb0a796b

View File

@ -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"));