2011-11-17 10:24:20

by Santiago Carot

[permalink] [raw]
Subject: [PATCH] Fix coding style issue regarding with pointer checks

---
attrib/gatt-service.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/attrib/gatt-service.c b/attrib/gatt-service.c
index 3199830..ead3f8e 100644
--- a/attrib/gatt-service.c
+++ b/attrib/gatt-service.c
@@ -214,7 +214,7 @@ static gboolean add_characteristic(uint16_t *handle, struct gatt_info *info)
}
}

- if (info->value_handle)
+ if (info->value_handle != NULL)
*info->value_handle = a->handle;

/* client characteristic configuration descriptor */
@@ -227,7 +227,7 @@ static gboolean add_characteristic(uint16_t *handle, struct gatt_info *info)
a = attrib_db_add(h++, &bt_uuid, ATT_NONE, ATT_AUTHENTICATION,
cfg_val, sizeof(cfg_val));

- if (info->ccc_handle)
+ if (info->ccc_handle != NULL)
*info->ccc_handle = a->handle;
}

--
1.7.7.3



2011-11-17 12:00:24

by Johan Hedberg

[permalink] [raw]
Subject: Re: [PATCH] Fix coding style issue regarding with pointer checks

Hi Santiago,

On Thu, Nov 17, 2011, Santiago Carot-Nemesio wrote:
> ---
> attrib/gatt-service.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)

Applied. Thanks.

Johan