All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ v0] gatt: Fix proxies list iteration
@ 2014-03-27 19:45 Claudio Takahasi
  2014-03-28 12:26 ` Johan Hedberg
  0 siblings, 1 reply; 2+ messages in thread
From: Claudio Takahasi @ 2014-03-27 19:45 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Claudio Takahasi

---
 src/gatt-dbus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gatt-dbus.c b/src/gatt-dbus.c
index 95d1243..4456ec0 100644
--- a/src/gatt-dbus.c
+++ b/src/gatt-dbus.c
@@ -297,7 +297,7 @@ static int register_external_characteristics(GSList *proxies)
 {
 	GSList *list;
 
-	for (list = proxies; list; list = g_slist_next(proxies)) {
+	for (list = proxies; list; list = g_slist_next(list)) {
 		DBusMessageIter iter;
 		const char *str, *path;
 		bt_uuid_t uuid;
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH BlueZ v0] gatt: Fix proxies list iteration
  2014-03-27 19:45 [PATCH BlueZ v0] gatt: Fix proxies list iteration Claudio Takahasi
@ 2014-03-28 12:26 ` Johan Hedberg
  0 siblings, 0 replies; 2+ messages in thread
From: Johan Hedberg @ 2014-03-28 12:26 UTC (permalink / raw)
  To: Claudio Takahasi; +Cc: linux-bluetooth

Hi Claudio,

On Thu, Mar 27, 2014, Claudio Takahasi wrote:
> ---
>  src/gatt-dbus.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied. Thanks.

Johan

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-03-28 12:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-27 19:45 [PATCH BlueZ v0] gatt: Fix proxies list iteration Claudio Takahasi
2014-03-28 12:26 ` Johan Hedberg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.