Skip to content

Commit f6e2cd3

Browse files
committed
nsexec: Check for errors in write_log()
First, check if strdup() fails and error out. While we are there, the else case was missing brackets, as we only need to check ret in the else case. Fix that too Signed-off-by: Rodrigo Campos <[email protected]> (cherry picked from commit 5ce511d)
1 parent 3775df9 commit f6e2cd3

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

libcontainer/nsenter/nsexec.c

+8-6
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,17 @@ static void write_log(int level, const char *format, ...)
168168

169169
message = escape_json_string(message);
170170

171-
if (current_stage == STAGE_SETUP)
171+
if (current_stage == STAGE_SETUP) {
172172
stage = strdup("nsexec");
173-
else
173+
if (stage == NULL)
174+
goto out;
175+
} else {
174176
ret = asprintf(&stage, "nsexec-%d", current_stage);
175-
if (ret < 0) {
176-
stage = NULL;
177-
goto out;
177+
if (ret < 0) {
178+
stage = NULL;
179+
goto out;
180+
}
178181
}
179-
180182
ret = asprintf(&json, "{\"level\":\"%s\", \"msg\": \"%s[%d]: %s\"}\n",
181183
level_str[level], stage, getpid(), message);
182184
if (ret < 0) {

0 commit comments

Comments
 (0)