This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 0f103ae99a61166c2ee988c292b67eeb74b53e82
Author: Carsten Haitzler <[email protected]>
AuthorDate: Thu Apr 9 07:47:32 2026 +0100
mixer - make an un-findable sink a quiet error not noisy
if we can't find a sink id that changed... it's not a bad thing. we're
just likely out of date.
---
src/modules/mixer/lib/backends/pulseaudio/pulse.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/modules/mixer/lib/backends/pulseaudio/pulse.c b/src/modules/mixer/lib/backends/pulseaudio/pulse.c
index f98e28aff..4bcf7724e 100644
--- a/src/modules/mixer/lib/backends/pulseaudio/pulse.c
+++ b/src/modules/mixer/lib/backends/pulseaudio/pulse.c
@@ -323,7 +323,7 @@ _sink_changed_cb(pa_context *c EINA_UNUSED, const pa_sink_info *info, int eol,
}
}
- EINA_SAFETY_ON_NULL_RETURN(sink);
+ if (!sink) return;
eina_stringshare_replace(&sink->base.name, info->description);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.