summaryrefslogtreecommitdiffstats
path: root/hcid
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2006-11-08 16:48:32 +0000
committerClaudio Takahasi <claudio.takahasi@openbossa.org>2006-11-08 16:48:32 +0000
commit135151c382018639cd3fce5f67bb53eb621b528e (patch)
tree3bbc15d4fc233ea47b5763963f319fe234b2767e /hcid
parent346cb4d17e492265b9e14c6352c8ee6c564b5498 (diff)
Cleanup: use dbus_message_iter_get_fixed_array instead of walking the entire array with an iterator.
Diffstat (limited to 'hcid')
-rw-r--r--hcid/dbus-manager.c30
1 files changed, 12 insertions, 18 deletions
diff --git a/hcid/dbus-manager.c b/hcid/dbus-manager.c
index dd071ce1..30c8874a 100644
--- a/hcid/dbus-manager.c
+++ b/hcid/dbus-manager.c
@@ -366,28 +366,22 @@ static DBusHandlerResult unregister_shadow_service(DBusConnection *conn,
static sdp_buf_t *service_record_extract(DBusMessageIter *iter)
{
sdp_buf_t *sdp_buf;
- uint8_t buff[SDP_RSP_BUFFER_SIZE];
- int index = 0;
- uint8_t value;
+ const uint8_t *buff;
+ int len = -1;
- memset(buff, 0, SDP_RSP_BUFFER_SIZE);
-
- /* FIXME why get fixed array doesn't work? dbus_message_iter_get_fixed_array */
- while (dbus_message_iter_get_arg_type(iter) != DBUS_TYPE_INVALID) {
- dbus_message_iter_get_basic(iter, &value);
- buff[index++] = value;
- dbus_message_iter_next(iter);
- }
+ dbus_message_iter_get_fixed_array(iter, &buff, &len);
+ if (len < 0)
+ return NULL;
sdp_buf = malloc(sizeof(sdp_buf_t));
if (!sdp_buf)
return NULL;
memset(sdp_buf, 0, sizeof(sdp_buf_t));
- sdp_buf->data = malloc(index);
- sdp_buf->data_size = index;
- sdp_buf->buf_size = index;
- memcpy(sdp_buf->data, buff, index);
+ sdp_buf->data = malloc(len);
+ sdp_buf->data_size = len;
+ sdp_buf->buf_size = len;
+ memcpy(sdp_buf->data, buff, len);
return sdp_buf;
}
@@ -465,9 +459,9 @@ static DBusHandlerResult add_service_record(DBusConnection *conn,
agent->records = slist_append(agent->records, rec);
- dbus_message_append_args(msg,
- DBUS_TYPE_UINT32, &rec->handle),
- DBUS_TYPE_INVALID;
+ dbus_message_append_args(reply,
+ DBUS_TYPE_UINT32, &rec->handle,
+ DBUS_TYPE_INVALID);
return send_message_and_unref(conn, reply);
fail: