mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-05-23 16:18:10 +02: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 | ||