All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ilias Apalodimas <ilias.apalodimas@linaro.org>
To: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Cc: u-boot@lists.denx.de
Subject: Re: [PATCH 1/1] cmd: simplify do_env_set_efi()
Date: Thu, 6 Oct 2022 11:03:59 +0300	[thread overview]
Message-ID: <Yz6L7xRBaxJSwAoL@hera> (raw)
In-Reply-To: <20221006045419.30435-1-heinrich.schuchardt@canonical.com>

Hi Heinrich, 

On Thu, Oct 06, 2022 at 06:54:19AM +0200, Heinrich Schuchardt wrote:
> Use efi_convert_string() to convert a UTF-8 to a UTF-16 string.
> 
> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
> ---
>  cmd/nvedit_efi.c | 6 +-----
>  1 file changed, 1 insertion(+), 5 deletions(-)
> 
> diff --git a/cmd/nvedit_efi.c b/cmd/nvedit_efi.c
> index 770877c527..0411b66559 100644
> --- a/cmd/nvedit_efi.c
> +++ b/cmd/nvedit_efi.c
> @@ -383,7 +383,6 @@ int do_env_set_efi(struct cmd_tbl *cmdtp, int flag, int argc,
>  	u32 attributes;
>  	bool default_guid, verbose, value_on_memory;
>  	u16 *var_name16 = NULL, *p;
> -	size_t len;
>  	efi_status_t ret;
>  
>  	if (argc == 1)
> @@ -487,16 +486,13 @@ int do_env_set_efi(struct cmd_tbl *cmdtp, int flag, int argc,
>  			       16, 1, value, size, true);
>  	}
>  
> -	len = utf8_utf16_strnlen(var_name, strlen(var_name));
> -	var_name16 = malloc((len + 1) * 2);
> +	var_name16 = efi_convert_string(var_name);
>  	if (!var_name16) {
>  		printf("## Out of memory\n");
>  		ret = CMD_RET_FAILURE;
>  		goto out;
>  	}
>  	p = var_name16;
> -	utf8_utf16_strncpy(&p, var_name, len + 1);
> -

Shouldn't we remove p as well after the cleanup ?

>  	ret = efi_set_variable_int(var_name16, &guid, attributes, size, value,
>  				   true);
>  	unmap_sysmem(value);
> -- 
> 2.37.2
> 

Cheers
/Ilias

      reply	other threads:[~2022-10-06  8:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-06  4:54 [PATCH 1/1] cmd: simplify do_env_set_efi() Heinrich Schuchardt
2022-10-06  8:03 ` Ilias Apalodimas [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Yz6L7xRBaxJSwAoL@hera \
    --to=ilias.apalodimas@linaro.org \
    --cc=heinrich.schuchardt@canonical.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.