From eed22e415439fa140b31bf642d3e078b8c4ab9c9 Mon Sep 17 00:00:00 2001 From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Thu, 21 Sep 2023 16:33:19 +0100 Subject: [PATCH] update to correspond with the move of principal_conn_lock to a pthread_rwlock. --- dbus-service.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dbus-service.c b/dbus-service.c index a25d9962..8acf2392 100644 --- a/dbus-service.c +++ b/dbus-service.c @@ -635,7 +635,8 @@ gboolean notify_volume_callback(ShairportSync *skeleton, if (((iv >= -30.0) && (iv <= 0.0)) || (iv == -144.0)) { debug(2, ">> setting volume to %7.4f.", iv); - pthread_cleanup_debug_mutex_lock(&principal_conn_lock, 100000, 1); + pthread_rwlock_rdlock(&principal_conn_lock); // don't let the principal_conn be changed + pthread_cleanup_push(rwlock_unlock,(void *)&principal_conn_lock); if (principal_conn != NULL) { player_volume(iv, principal_conn); -- 2.47.3