From: Heinrich Schuchardt Date: Sun, 19 Mar 2023 08:20:23 +0000 (+0100) Subject: efi_loader: simplify efi_str_to_u16() X-Git-Tag: baikal/mips/sdk6.2~4^2~3^2~175^2~23^2~13 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=9a31cd74aeda047a43a15cad5b5a2bd38ac4b71b;p=uboot.git efi_loader: simplify efi_str_to_u16() Use efi_alloc() to allocate memory. Signed-off-by: Heinrich Schuchardt Reviewed-by: Simon Glass --- diff --git a/lib/efi_loader/efi_device_path_to_text.c b/lib/efi_loader/efi_device_path_to_text.c index 4b2ade3803..8c76d8be60 100644 --- a/lib/efi_loader/efi_device_path_to_text.c +++ b/lib/efi_loader/efi_device_path_to_text.c @@ -32,11 +32,10 @@ static u16 *efi_str_to_u16(char *str) { efi_uintn_t len; u16 *out, *dst; - efi_status_t ret; len = sizeof(u16) * (utf8_utf16_strlen(str) + 1); - ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, len, (void **)&out); - if (ret != EFI_SUCCESS) + out = efi_alloc(len); + if (!out) return NULL; dst = out; utf8_utf16_strcpy(&dst, str);