Diff between 521006ef7b0737739e4e2c66564ed458a348f566 and b358f4f350211dfd9d52a0b4fbc611b0c711bcdd

Changed Files

File Additions Deletions Status
src/device.c +1 -2 modified

Full Patch

diff --git a/src/device.c b/src/device.c
index b4d13f2..771a908 100644
--- a/src/device.c
+++ b/src/device.c
@@ -1111,8 +1111,7 @@ static GSList *device_match_driver(struct btd_device *device,
 
 		/* match pattern driver */
 		match = device_match_pattern(device, *uuid, profiles);
-		for (; match; match = match->next)
-			uuids = g_slist_append(uuids, match->data);
+		uuids = g_slist_concat(uuids, match);
 	}
 
 	return uuids;