mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-05-09 05:08:04 +02:00
tests: endpoint: fix coverity 'side effect in assertion' error
This commit is contained in:
parent
d576fde2d7
commit
8505078a80
1 changed files with 2 additions and 1 deletions
|
|
@ -620,7 +620,8 @@ test_endpoint_with_props (TestEndpointFixture *fixture, gconstpointer data)
|
|||
g_assert_nonnull (iterator);
|
||||
|
||||
g_assert_true (wp_iterator_next (iterator, &item));
|
||||
g_assert_nonnull ((pod = g_value_dup_boxed (&item)));
|
||||
pod = g_value_dup_boxed (&item);
|
||||
g_assert_nonnull (pod);
|
||||
|
||||
g_assert_true (wp_spa_pod_get_object (pod, NULL,
|
||||
"volume", "f", &float_value,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue