[U-Boot] [PATCH 4/4] efi_loader: parameter check efi_convert_device_path_to_text

Heinrich Schuchardt xypron.glpk at gmx.de
Thu Jul 13 20:06:21 UTC 2017


Do not dereference NULL.

Signed-off-by: Heinrich Schuchardt <xypron.glpk at gmx.de>
---
 lib/efi_loader/efi_device_path_to_text.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lib/efi_loader/efi_device_path_to_text.c b/lib/efi_loader/efi_device_path_to_text.c
index 746b34a377..81a6a91e66 100644
--- a/lib/efi_loader/efi_device_path_to_text.c
+++ b/lib/efi_loader/efi_device_path_to_text.c
@@ -39,6 +39,11 @@ uint16_t *efi_convert_device_path_to_text(
 	efi_status_t r;
 	uint16_t *buffer = NULL;
 
+	if (!device_path) {
+		EFI_EXIT(EFI_INVALID_PARAMETER);
+		return NULL;
+	}
+
 	switch (device_path->type) {
 	case DEVICE_PATH_TYPE_MESSAGING_DEVICE:
 		switch (device_path->sub_type) {
-- 
2.11.0



More information about the U-Boot mailing list