fix missing sentinel in call

This commit is contained in:
Jeff Epler 2022-12-12 19:09:57 -06:00
parent 3620d14542
commit 808161eaab
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE

View File

@ -351,7 +351,7 @@ static void _send_str(socketpool_socket_obj_t *socket, const char *str) {
}
// The last argument must be NULL! Otherwise, it won't stop.
static void _send_strs(socketpool_socket_obj_t *socket, ...) {
static __attribute__((sentinel)) void _send_strs(socketpool_socket_obj_t *socket, ...) {
va_list ap;
va_start(ap, socket);
@ -691,7 +691,7 @@ static void _reply_with_file(socketpool_socket_obj_t *socket, _request *request,
} else if (_endswith(filename, ".json")) {
_send_strs(socket, "Content-Type:", "application/json", ";charset=UTF-8\r\n", NULL);
} else {
_send_strs(socket, "Content-Type:", "application/octet-stream\r\n");
_send_strs(socket, "Content-Type:", "application/octet-stream\r\n", NULL);
}
_cors_header(socket, request);
_send_str(socket, "\r\n");