Diff between 6a2f283631538fb27078fc2609a1231b30586e6c and aa661048999fa5c0f9c1e9ef52efba16d58a4f4c
Changed Files
| File | Additions | Deletions | Status |
| android/tester-main.c | +3 | -0 | modified |
Full Patch
diff --git a/android/tester-main.c b/android/tester-main.c
index 4513fcb..385c00d 100644
--- a/android/tester-main.c
+++ b/android/tester-main.c
@@ -402,6 +402,9 @@ static bool verify_gatt_ids(btgatt_gatt_id_t *a, btgatt_gatt_id_t *b)
if (memcmp(&a->uuid, &b->uuid, sizeof(bt_uuid_t)))
return false;
+ if (a->inst_id != b->inst_id)
+ return false;
+
return true;
}