* [PATCH BlueZ v1] audio: Replace g_hash_table_contains() with g_hash_table_lookup()
@ 2013-01-08 5:25 Jaganath Kanakkassery
2013-01-08 6:32 ` Marcel Holtmann
0 siblings, 1 reply; 2+ messages in thread
From: Jaganath Kanakkassery @ 2013-01-08 5:25 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Jaganath Kanakkassery
g_hash_table_contains() is supported only from GLib 2.32. If BlueZ has to
build against GLib 2.28 this patch replaces g_hash_table_contains() to
g_hash_table_lookup()
---
profiles/audio/player.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/profiles/audio/player.c b/profiles/audio/player.c
index 8748893..bffb506 100644
--- a/profiles/audio/player.c
+++ b/profiles/audio/player.c
@@ -172,8 +172,11 @@ static gboolean get_status(const GDBusPropertyTable *property,
static gboolean setting_exists(const GDBusPropertyTable *property, void *data)
{
struct media_player *mp = data;
+ const char *value;
+
+ value = g_hash_table_lookup(mp->settings, property->name);
- return g_hash_table_contains(mp->settings, property->name);
+ return value ? TRUE : FALSE;
}
static gboolean get_setting(const GDBusPropertyTable *property,
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-01-08 6:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-08 5:25 [PATCH BlueZ v1] audio: Replace g_hash_table_contains() with g_hash_table_lookup() Jaganath Kanakkassery
2013-01-08 6:32 ` Marcel Holtmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox