diff options
| -rw-r--r-- | lib/simple_file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/simple_file.c b/lib/simple_file.c index 3bf92ed8..6ad31b4d 100644 --- a/lib/simple_file.c +++ b/lib/simple_file.c @@ -403,10 +403,10 @@ simple_file_selector(EFI_HANDLE * im, CHAR16 ** title, CHAR16 * name, filter = L""; if (!*im) { EFI_HANDLE h; - CHAR16 *volname; + CHAR16 *volname = NULL; - simple_volume_selector(title, &volname, &h); - if (!volname) + efi_status = simple_volume_selector(title, &volname, &h); + if (EFI_ERROR(efi_status) || !volname) return; FreePool(volname); *im = h; |
