1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-03-10 00:58:20 +03:00

makefs: log about OOM condition

This commit is contained in:
Lennart Poettering 2020-05-18 18:30:18 +02:00
parent 6cba41ab0d
commit 700e0d3d87

View File

@ -54,11 +54,11 @@ static int run(int argc, char *argv[]) {
/* type and device must be copied because makefs calls safe_fork, which clears argv[] */
type = strdup(argv[1]);
if (!type)
return -ENOMEM;
return log_oom();
device = strdup(argv[2]);
if (!device)
return -ENOMEM;
return log_oom();
if (stat(device, &st) < 0)
return log_error_errno(errno, "Failed to stat \"%s\": %m", device);