mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
creds: Unbreak build without HAVE_CREDS
A recent patch broke the build on FreeBSD, which does not have HAVE_CREDS defined. Also, make sure any attempts to enable the srbchannel on such architectures fail. BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=80642 Reported-by: Ryan Lortie Signed-off-by: David Henningsson <david.henningsson@canonical.com>
This commit is contained in:
parent
3be8382fcd
commit
2bfedb9f73
3 changed files with 21 additions and 0 deletions
|
|
@ -1411,6 +1411,8 @@ finish:
|
|||
|
||||
static void pa_command_enable_srbchannel(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
|
||||
pa_context *c = userdata;
|
||||
|
||||
#ifdef HAVE_CREDS
|
||||
const int *fds;
|
||||
int nfd;
|
||||
|
||||
|
|
@ -1439,6 +1441,11 @@ static void pa_command_enable_srbchannel(pa_pdispatch *pd, uint32_t command, uin
|
|||
c->srb_setup_tag = tag;
|
||||
|
||||
pa_context_unref(c);
|
||||
|
||||
#else
|
||||
pa_assert(c);
|
||||
pa_context_fail(c, PA_ERR_PROTOCOL);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void pa_command_disable_srbchannel(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue