public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
From: Christian Eggers <ceggers@arri.de>
To: <linux-bluetooth@vger.kernel.org>, Yao Zi <ziyao@disroot.org>
Cc: Yao Zi <ziyao@disroot.org>
Subject: Re: [PATCH BlueZ] client/gatt: Fix pointer assigned with character literal
Date: Tue, 25 Mar 2025 11:28:18 +0100	[thread overview]
Message-ID: <2168523.9o76ZdvQCi@n9w6sw14> (raw)
In-Reply-To: <20250325083546.31597-2-ziyao@disroot.org>

On Tuesday, 25 March 2025, 09:35:47 CET, Yao Zi wrote:
> A character literl, '\0', is assigned to the pointer. The corresponding
> comment doesn't make any sense, since '\0' represents zero and this
> statement does the same thing as assigning value with NULL.
> 
> Initializing value with NULL (or zero) is safe and correct here: the
> only case that the initial value of the pointer is passed to
> write_value() is that the if branch isn't executed, where len keeps its
> initial value, zero, as well. With src_len equal to zero, write_value()
> will bail out and src_val won't be dereferenced.
> 
> Let's clean up the misleading comment and change right side of the
> assignment to fix compiler warnings about the wrong type,
> 
> Fixes: ee750bbaf68c ("client/gatt: proxy_property_changed: check for NULL iterator")
> Signed-off-by: Yao Zi <ziyao@disroot.org>

After reading my own commit message, assigning "value = '\0'" absolutely makes
no sense in this context. Actually my intention was only checking for iter != NULL.

Acked-by: Christian Eggers <ceggers@arri.de>

> ---
>  client/gatt.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/client/gatt.c b/client/gatt.c
> index 4dac88590..b18186518 100644
> --- a/client/gatt.c
> +++ b/client/gatt.c
> @@ -3207,7 +3207,7 @@ static void proxy_property_changed(GDBusProxy *proxy, const char *name,
>  			chrc->path, bt_uuidstr_to_str(chrc->uuid), name);
>  
>  	if (!strcmp(name, "Value")) {
> -		uint8_t *value = '\0';  /* don't pass NULL to write_value() */
> +		uint8_t *value = NULL;
>  		int len = 0;
>  
>  		if (iter && dbus_message_iter_get_arg_type(iter) ==
> 





  parent reply	other threads:[~2025-03-25 10:28 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-25  8:35 [PATCH BlueZ] client/gatt: Fix pointer assigned with character literal Yao Zi
2025-03-25  9:39 ` [BlueZ] " bluez.test.bot
2025-03-25 10:28 ` Christian Eggers [this message]
2025-03-26 15:10 ` [PATCH BlueZ] " patchwork-bot+bluetooth

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=2168523.9o76ZdvQCi@n9w6sw14 \
    --to=ceggers@arri.de \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=ziyao@disroot.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox