diff options
| -rw-r--r-- | http.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1050,6 +1050,13 @@ static int header_cr_line(struct http_ctx *const h) if (res) { + if (res < 0) + { + fprintf(stderr, "%s: check_length failed\n", + __func__); + return res; + } + h->wctx.close = true; return start_response(h); } |
