mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
make sure we don't choke on PULSE_PROP_OVERRIDE
This commit is contained in:
parent
77779ead6d
commit
edfa39a2af
1 changed files with 3 additions and 2 deletions
|
@ -135,8 +135,9 @@ void pa_init_proplist(pa_proplist *p) {
|
|||
|
||||
k = pa_xstrndup(*e+skip, kl);
|
||||
|
||||
if (override || !pa_proplist_contains(p, k))
|
||||
pa_proplist_sets(p, k, *e+skip+kl+1);
|
||||
if (!pa_streq(k, "OVERRIDE"))
|
||||
if (override || !pa_proplist_contains(p, k))
|
||||
pa_proplist_sets(p, k, *e+skip+kl+1);
|
||||
pa_xfree(k);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue