From 8c9195694781f35c70bd48739da9c7f44604e5b5 Mon Sep 17 00:00:00 2001 From: default Date: Mon, 5 Jun 2023 18:36:36 +0200 Subject: Replace an sprintf() with an snprintf(). --- httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'httpd.c') diff --git a/httpd.c b/httpd.c index 9703a1f..4272199 100644 --- a/httpd.c +++ b/httpd.c @@ -510,7 +510,7 @@ void httpd(void) /* initialize the job control engine */ pthread_mutex_init(&job_mutex, NULL); - sprintf(sem_name, "/job_%d", getpid()); + snprintf(sem_name, sizeof(sem_name), "/job_%d", getpid()); job_sem = sem_open(sem_name, O_CREAT, 0644, 0); if (job_sem == NULL) { -- cgit v1.2.3