mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-01-25 10:20:29 +01:00
The branch should be taken if errno is neither EAGAIN, nor EWOULDBLOCK. Previously, if (errno != EAGAIN || errno != EWOULDBLOCK) would be taken for all values of errno if EAGAIN != EWOULDBLOCK. (Except for the ones that are filtered out before.) Fix that by changing `||` to `&&`. |
||
|---|---|---|
| .. | ||
| v0 | ||
| connection.c | ||
| connection.h | ||
| defs.h | ||
| local-socket.c | ||
| portal-screencast.c | ||
| protocol-native.c | ||
| test-connection.c | ||