--- audio/avdtp.c | 11 ++++------- audio/ctl_bluetooth.c | 6 ++---- tools/hciattach_ti.c | 9 ++++----- tools/sdptool.c | 3 +-- 4 files changed, 11 insertions(+), 18 deletions(-) diff --git a/audio/avdtp.c b/audio/avdtp.c index e6407bb..653c099 100644 --- a/audio/avdtp.c +++ b/audio/avdtp.c @@ -2239,22 +2239,22 @@ static uint16_t get_version(struct avdtp *session) adapter = manager_find_adapter(&session->server->src); if (!adapter) - goto done; + return ver; ba2str(&session->dst, addr); device = adapter_find_device(adapter, addr); if (!device) - goto done; + return ver; rec = btd_device_get_record(device, A2DP_SINK_UUID); if (!rec) rec = btd_device_get_record(device, A2DP_SOURCE_UUID); if (!rec) - goto done; + return ver; if (sdp_get_access_protos(rec, &protos) < 0) - goto done; + return ver; proto_desc = sdp_get_proto_desc(protos, AVDTP_UUID); if (proto_desc && proto_desc->dtd == SDP_UINT16) @@ -2262,9 +2262,6 @@ static uint16_t get_version(struct avdtp *session) sdp_list_foreach(protos, (sdp_list_func_t) sdp_list_free, NULL); sdp_list_free(protos, NULL); - -done: - return ver; } static struct avdtp *avdtp_get_internal(const bdaddr_t *src, const bdaddr_t *dst) diff --git a/audio/ctl_bluetooth.c b/audio/ctl_bluetooth.c index 2981385..d941421 100644 --- a/audio/ctl_bluetooth.c +++ b/audio/ctl_bluetooth.c @@ -213,11 +213,9 @@ static int bluetooth_read_integer(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, *value = 0; ret = bluetooth_send_ctl(data, key, 0, rsp); - if (ret < 0) - goto done; + if (ret == 0) + *value = rsp->key; - *value = rsp->key; -done: return ret; } diff --git a/tools/hciattach_ti.c b/tools/hciattach_ti.c index e107a65..6269181 100644 --- a/tools/hciattach_ti.c +++ b/tools/hciattach_ti.c @@ -119,7 +119,7 @@ static FILE *bts_load_script(const char* file_name, uint32_t* version) fp = fopen(file_name, "rb"); if (!fp) { perror("can't open firmware file"); - goto out; + return NULL; } if (1 != fread(&header, sizeof(struct bts_header), 1, fp)) { @@ -135,13 +135,12 @@ static FILE *bts_load_script(const char* file_name, uint32_t* version) if (NULL != version) *version = header.version; - goto out; + return fp; errclose: fclose(fp); - fp = NULL; -out: - return fp; + + return NULL; } static unsigned long bts_fetch_action(FILE* fp, unsigned char* action_buf, diff --git a/tools/sdptool.c b/tools/sdptool.c index 140a46a..aea4954 100644 --- a/tools/sdptool.c +++ b/tools/sdptool.c @@ -4116,10 +4116,9 @@ static int cmd_records(int argc, char **argv) context.handle = base[i] + n; err = get_service(&bdaddr, &context, 1); if (err < 0) - goto done; + return 0; } -done: return 0; } -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html