diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2007-05-19 11:02:55 +0000 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2007-05-19 11:02:55 +0000 |
commit | b4cd9d1c7d90aafb50a9f00247afa842477e08ee (patch) | |
tree | 5a7f6382ecc1efaf98807ef2b6be201256fad6a2 | |
parent | dc2fadfce2466c28e87f701d995fda91ffda1e67 (diff) |
Allocate memory for each handle in the list instead of casting between ints and pointers
-rw-r--r-- | audio/manager.c | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/audio/manager.c b/audio/manager.c index 5f7f5f88..d71509bf 100644 --- a/audio/manager.c +++ b/audio/manager.c @@ -435,6 +435,7 @@ done: free_device(data->device); dbus_connection_unref(data->conn); dbus_message_unref(data->msg); + g_slist_foreach(data->handles, (GFunc) g_free, NULL); g_slist_free(data->handles); g_slist_foreach(data->records, (GFunc) sdp_record_free, NULL); g_slist_free(data->records); @@ -505,7 +506,7 @@ static void get_next_record(struct audio_sdp_data *data) DBusMessage *msg; DBusPendingCall *pending; char address[18], *ptr = address; - dbus_uint32_t handle; + dbus_uint32_t *handle; msg = dbus_message_new_method_call("org.bluez", "/org/bluez/hci0", "org.bluez.Adapter", @@ -517,16 +518,18 @@ static void get_next_record(struct audio_sdp_data *data) return; } - handle = (dbus_uint32_t) data->handles->data; + handle = data->handles->data; data->handles = g_slist_remove(data->handles, data->handles->data); ba2str(&data->device->bda, address); dbus_message_append_args(msg, DBUS_TYPE_STRING, &ptr, - DBUS_TYPE_UINT32, &handle, + DBUS_TYPE_UINT32, handle, DBUS_TYPE_INVALID); + g_free(handle); + if (!dbus_connection_send_with_reply(data->conn, msg, &pending, -1)) { error("Sending GetRemoteServiceRecord failed"); err_connect_failed(data->conn, data->msg, EIO); @@ -544,7 +547,7 @@ static void get_next_record(struct audio_sdp_data *data) static GSList *find_handle(GSList *handles, dbus_uint32_t handle) { while (handles) { - if ((dbus_uint32_t) handles->data == handle) + if (*(dbus_uint32_t *) handles->data == handle) return handles; handles = handles->next; } @@ -584,9 +587,11 @@ static void get_handles_reply(DBusPendingCall *call, } for (i = 0; i < array_len; i++) { - if (!find_handle(data->handles, array[i])) - data->handles = g_slist_append(data->handles, - (gpointer) array[i]); + if (!find_handle(data->handles, array[i])) { + dbus_uint32_t *handle = g_new(dbus_uint32_t, 1); + *handle = array[i]; + data->handles = g_slist_append(data->handles, handle); + } } data->state++; |