From f8a2b09a1890d7de5ea82b1cf51608afa4fe5de7 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 12 Aug 2019 00:05:28 +0900 Subject: [PATCH] bootctl: arg_dolloar_boot_path() may return NULL --- src/boot/bootctl.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index d0bea6a9467..ddc267401f5 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -1176,7 +1176,11 @@ static int verb_status(int argc, char *argv[], void *userdata) { if (r < 0) return r; - puts(arg_dollar_boot_path()); + const char *path = arg_dollar_boot_path(); + if (!path) + return log_error_errno(SYNTHETIC_ERRNO(EACCES), "Failed to determine XBOOTLDR location: %m"); + + puts(path); } if (arg_print_esp_path || arg_print_dollar_boot_path) -- 2.47.3