Allow passing a NULL proplist to pa_xxxx_update_proplist() to just fire a notification

This commit is contained in:
Lennart Poettering 2009-02-22 05:01:32 +01:00
parent e335b3d6ca
commit 3bccb704b6
3 changed files with 7 additions and 8 deletions

View file

@ -943,9 +943,9 @@ pa_bool_t pa_sink_input_get_mute(pa_sink_input *i) {
/* Called from main thread */
void pa_sink_input_update_proplist(pa_sink_input *i, pa_update_mode_t mode, pa_proplist *p) {
pa_sink_input_assert_ref(i);
pa_assert(p);
pa_proplist_update(i->proplist, mode, p);
if (p)
pa_proplist_update(i->proplist, mode, p);
if (PA_SINK_IS_LINKED(i->state)) {
pa_hook_fire(&i->core->hooks[PA_CORE_HOOK_SINK_INPUT_PROPLIST_CHANGED], i);