mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
padsp: properly return return values (llvm-clang-analyzer)
This commit is contained in:
parent
b51f5e58cc
commit
7cc100d9e1
1 changed files with 3 additions and 3 deletions
|
|
@ -1821,7 +1821,7 @@ fail:
|
|||
|
||||
pa_threaded_mainloop_unlock(i->mainloop);
|
||||
|
||||
return 0;
|
||||
return r;
|
||||
}
|
||||
|
||||
static int dsp_trigger(fd_info *i) {
|
||||
|
|
@ -1864,7 +1864,7 @@ fail:
|
|||
|
||||
pa_threaded_mainloop_unlock(i->mainloop);
|
||||
|
||||
return 0;
|
||||
return r;
|
||||
}
|
||||
|
||||
static int dsp_cork(fd_info *i, pa_stream *s, int b) {
|
||||
|
|
@ -1902,7 +1902,7 @@ fail:
|
|||
|
||||
pa_threaded_mainloop_unlock(i->mainloop);
|
||||
|
||||
return 0;
|
||||
return r;
|
||||
}
|
||||
|
||||
static int dsp_ioctl(fd_info *i, unsigned long request, void*argp, int *_errno) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue