mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-23 08:56:47 -05:00
alsa: fix scan-build errors for unused variables
All cases of value stored but never read
This commit is contained in:
parent
6d19dd0162
commit
4dd886188a
4 changed files with 8 additions and 8 deletions
|
|
@ -488,7 +488,7 @@ skip_channels:
|
|||
|
||||
fmt = spa_pod_builder_pop(&b, &f[0]);
|
||||
|
||||
if ((res = spa_pod_filter(&b, &result.param, fmt, filter)) < 0)
|
||||
if (spa_pod_filter(&b, &result.param, fmt, filter) < 0)
|
||||
goto next;
|
||||
|
||||
spa_node_emit_result(&state->hooks, seq, 0, SPA_RESULT_TYPE_NODE_PARAMS, &result);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue