mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-05 13:30:02 -05:00
context: report error only once
This commit is contained in:
parent
72b61f614a
commit
c9ac5e6e1e
1 changed files with 3 additions and 2 deletions
|
|
@ -34,9 +34,10 @@
|
||||||
int pa_context_set_error(pa_context *c, int error) {
|
int pa_context_set_error(pa_context *c, int error) {
|
||||||
pa_assert(error >= 0);
|
pa_assert(error >= 0);
|
||||||
pa_assert(error < PA_ERR_MAX);
|
pa_assert(error < PA_ERR_MAX);
|
||||||
|
if (c && c->error != error) {
|
||||||
pw_log_debug("context %p: error %d %s", c, error, pa_strerror(error));
|
pw_log_debug("context %p: error %d %s", c, error, pa_strerror(error));
|
||||||
if (c)
|
|
||||||
c->error = error;
|
c->error = error;
|
||||||
|
}
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue