summaryrefslogtreecommitdiffstats
path: root/lib/libbluetooth/bluetooth.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libbluetooth/bluetooth.c')
-rw-r--r--lib/libbluetooth/bluetooth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libbluetooth/bluetooth.c b/lib/libbluetooth/bluetooth.c
index 4678509..f206aee 100644
--- a/lib/libbluetooth/bluetooth.c
+++ b/lib/libbluetooth/bluetooth.c
@@ -291,7 +291,7 @@ bt_aton(char const *str, bdaddr_t *ba)
memset(ba, 0, sizeof(*ba));
for (i = 5, end = strchr(str, ':');
- i > 0 && *str != NULL && end != NULL;
+ i > 0 && *str != '\0' && end != NULL;
i --, str = end + 1, end = strchr(str, ':')) {
switch (end - str) {
case 1:
OpenPOWER on IntegriCloud