Signed-off-by: zhongtao <zhongtao17@huawei.com> (cherry picked from commit 8e60786a9fa82786c1d59abc85822ea46edc4d7d)
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From f62df3dedbbe11bb56e6da7dd610c573fd3ed828 Mon Sep 17 00:00:00 2001
|
|
From: jikai <jikai11@huawei.com>
|
|
Date: Mon, 25 Mar 2024 10:01:56 +0800
|
|
Subject: [PATCH 33/34] fix sandbox container bool value uninitialized
|
|
|
|
Signed-off-by: jikai <jikai11@huawei.com>
|
|
---
|
|
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.25.1
|
|
|