mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
modules: Fix uninitialized variable in rtp-send
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
parent
b0a04d8031
commit
0c4c2b3110
1 changed files with 1 additions and 1 deletions
|
|
@ -281,7 +281,7 @@ int pa__init(pa_module*m) {
|
|||
dst_sa6.sin6_family = af = AF_INET6;
|
||||
dst_sa6.sin6_port = htons((uint16_t) port);
|
||||
dst_sa6.sin6_flowinfo = 0;
|
||||
src_sa6.sin6_scope_id = 0;
|
||||
dst_sa6.sin6_scope_id = 0;
|
||||
dst_sap_sa6 = dst_sa6;
|
||||
dst_sap_sa6.sin6_port = htons(SAP_PORT);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue