Skip to content

Commit c6781d1

Browse files
authored
Merge pull request #3721 from kinvolk/rata/nsfixes-backport
[1.1] nsexec: Check for errors in write_log()
2 parents 3775df9 + f6e2cd3 commit c6781d1

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)