diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2006-08-23 15:34:04 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2006-08-23 15:34:04 +0000 |
commit | 03225713f1f27212e864e1e04b72f89663587ca2 (patch) | |
tree | f70ee76528655ac622ed15a91eec8125436d8caf /hcid | |
parent | 9d960d25c193812b19f14a47d3592bca0b2f194f (diff) |
Fix usage of bt_free()
Diffstat (limited to 'hcid')
-rw-r--r-- | hcid/dbus-rfcomm.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/hcid/dbus-rfcomm.c b/hcid/dbus-rfcomm.c index fdc4a21f..ebeeb462 100644 --- a/hcid/dbus-rfcomm.c +++ b/hcid/dbus-rfcomm.c @@ -42,7 +42,6 @@ #include <bluetooth/sdp.h> #include <bluetooth/sdp_lib.h> - #include <dbus/dbus.h> #include "hcid.h" @@ -460,11 +459,11 @@ static sdp_record_t *get_record_from_string(const char *dst, const char *string) { uuid_t short_uuid; - uuid_t *uuid = NULL; - sdp_record_t *rec = NULL; + uuid_t *uuid; + sdp_record_t *rec; unsigned int data0, data4; unsigned short data1, data2, data3, data5; - long handle; + uint32_t handle; /* Check if the string is a service name */ short_uuid.value.uuid16 = sdp_str2svclass(string); @@ -473,6 +472,7 @@ static sdp_record_t *get_record_from_string(const char *dst, short_uuid.type = SDP_UUID16; uuid = sdp_uuid_to_uuid128(&short_uuid); rec = find_record_by_uuid(dst, uuid); + bt_free(uuid); } else if (sscanf(string, "%8x-%4hx-%4hx-%4hx-%8x%4hx", &data0, &data1, &data2, &data3, &data4, &data5) == 6) { data0 = htonl(data0); @@ -493,12 +493,13 @@ static sdp_record_t *get_record_from_string(const char *dst, memcpy(&uuid->value.uuid128.data[14], &data5, 2); rec = find_record_by_uuid(dst, uuid); + + bt_free(uuid); } else if ((handle = strtol(string, NULL, 0))) rec = find_record_by_handle(dst, handle); + else + rec = NULL; - if (uuid) - bt_free(uuid); - return rec; } |