From: Steve McIntyre Date: Tue, 6 Dec 2022 01:45:11 +0000 (+0000) Subject: kern/file: Fix error handling in grub_file_open() X-Git-Tag: grub-2.12-rc1~193 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e375394fb9233fb1da13f7fb38e38d8aa83d1443;p=thirdparty%2Fgrub.git kern/file: Fix error handling in grub_file_open() grub_file_open() calls grub_file_get_device_name(), but doesn't check the return. Instead, it checks if grub_errno is set. However, nothing initialises grub_errno here when grub_file_open() starts. This means that trying to open one file that doesn't exist and then trying to open another file that does will (incorrectly) also fail to open that second file. Let's fix that. Signed-off-by: Steve McIntyre Reviewed-by: Daniel Kiper --- diff --git a/grub-core/kern/file.c b/grub-core/kern/file.c index 8d48fd50d..750177248 100644 --- a/grub-core/kern/file.c +++ b/grub-core/kern/file.c @@ -66,6 +66,9 @@ grub_file_open (const char *name, enum grub_file_type type) const char *file_name; grub_file_filter_id_t filter; + /* Reset grub_errno before we start. */ + grub_errno = GRUB_ERR_NONE; + device_name = grub_file_get_device_name (name); if (grub_errno) goto fail;