From f62df3dedbbe11bb56e6da7dd610c573fd3ed828 Mon Sep 17 00:00:00 2001 From: jikai Date: Mon, 25 Mar 2024 10:01:56 +0800 Subject: [PATCH 33/43] fix sandbox container bool value uninitialized Signed-off-by: jikai --- src/daemon/modules/service/service_container.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/modules/service/service_container.c b/src/daemon/modules/service/service_container.c index 7b34cc7f..a8090d5a 100644 --- a/src/daemon/modules/service/service_container.c +++ b/src/daemon/modules/service/service_container.c @@ -750,7 +750,7 @@ static int do_start_container(container_t *cont, const char *console_fifos[], bo oci_runtime_spec *oci_spec = NULL; rt_create_params_t create_params = { 0 }; rt_start_params_t start_params = { 0 }; - bool sandbox_container; + bool sandbox_container = false; nret = snprintf(bundle, sizeof(bundle), "%s/%s", cont->root_path, id); if (nret < 0 || (size_t)nret >= sizeof(bundle)) { -- 2.34.1