mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
CID 1457494: Incorrect expression (ASSERT_SIDE_EFFECT) Assignment "ai = (void *)((uint8_t *)pod + 16)" has a side effect. This code will work differently in a non-debug build. 550 spa_assert((ai = SPA_POD_ARRAY_VALUES(pod)) != NULL); Patch generated with coccinelle snippet @@ expression E1, E2; @@ - spa_assert((E1 = E2) != NULL); + E1 = E2; + spa_assert(E1 != NULL); And run again for == NULL |
||
|---|---|---|
| .. | ||
| meson.build | ||
| pwtest-compat.c | ||
| pwtest-implementation.h | ||
| pwtest.c | ||
| pwtest.h | ||
| test-array.c | ||
| test-context.c | ||
| test-example.c | ||
| test-lib.c | ||
| test-logger.c | ||
| test-properties.c | ||
| test-pwtest.c | ||
| test-spa-buffer.c | ||
| test-spa-json.c | ||
| test-spa-node.c | ||
| test-spa-pod.c | ||
| test-spa-utils.c | ||
| test-support.c | ||