mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -05:00
pulse-server: fix warning
The rest of the fields are zeroed later in reply_create_record_stream, but static analysis doesn't know that.
This commit is contained in:
parent
783fbc507b
commit
167537dffc
1 changed files with 1 additions and 1 deletions
|
|
@ -1805,7 +1805,7 @@ static int do_create_record_stream(struct client *client, uint32_t command, uint
|
|||
struct channel_map map;
|
||||
uint32_t source_index;
|
||||
const char *source_name;
|
||||
struct buffer_attr attr;
|
||||
struct buffer_attr attr = { 0 };
|
||||
bool corked = false,
|
||||
no_remap = false,
|
||||
no_remix = false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue