sock: avoid endless loop in sock_recv_chunk_header (2)

This commit is contained in:
2026-06-03 00:53:25 +02:00
parent c6bc32fab2
commit 0ab1d2af96
2 changed files with 20 additions and 15 deletions
-1
View File
@@ -30,7 +30,6 @@ void fastcgi_frame_handler_func(fastcgi_ctx_t *ctx) {
default:
// end of request received
write(ctx->cnx.fd_out, &val, sizeof(val));
write(ctx->cnx.fd_out, "\r\n", 2);
fastcgi_close(ctx);
}
}