fix: address CI failures - strict warnings and ASan leaks in tests
CI / lint (pull_request) Successful in 1m4s
CI / sanitizers (address) (pull_request) Successful in 38s
CI / sanitizers (undefined) (pull_request) Successful in 37s
CI / fuzz-build (pull_request) Successful in 12s
CI / coverage (pull_request) Successful in 30s
CI / build-and-test (pull_request) Failing after 1m14s
CI / valgrind (pull_request) Successful in 33s

This commit is contained in:
2026-07-29 19:42:53 +02:00
parent dff15110e8
commit 29a6b5fd84
6 changed files with 20 additions and 3 deletions
+3 -3
View File
@@ -151,9 +151,10 @@ void handler(int file_descriptor) {
close(file_descriptor);
}
#ifndef FASTSYNC_SERVER_AS_LIB
static Server* g_server = NULL;
static void __attribute__((unused)) cleanup(int sig) {
static void cleanup(int sig) {
(void)sig;
if (g_server) {
server_delete(&g_server);
@@ -161,7 +162,7 @@ static void __attribute__((unused)) cleanup(int sig) {
_exit(0);
}
static void __attribute__((unused)) print_server_usage(void) {
static void print_server_usage(void) {
printf("FastSync Server\n");
printf("Usage: fastsync-server [options]\n");
printf("\n");
@@ -176,7 +177,6 @@ static void __attribute__((unused)) print_server_usage(void) {
printf(" --help Show this help\n");
}
#ifndef FASTSYNC_SERVER_AS_LIB
int main(int argc, char* argv[]) {
bool use_tls = false;
char* tls_cert = NULL;