llsk_audio: Fix false positive about uninitialized var access

Let's make gcc in Ubuntu 21.10 happy.

Change-Id: If085b0ca0e1d3e7237696eb67cf6301ea84793e0
This commit is contained in:
Pau Espin 2021-12-17 13:37:31 +01:00
parent 3363db5c90
commit 64d8fd6298
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ static int llsk_rx_audio_conn_establish_req(struct hnb *hnb, struct hnb_audio_co
char rem_addrstr[INET6_ADDRSTRLEN+32];
struct osmo_sockaddr rem_osa = {0};
union u_addr loc_uaddr = {0};
uint16_t loc_port;
uint16_t loc_port = 0;
struct rtp_conn *conn = NULL;
rc = ll_addr2osa(ce_req->remote_rtp_address_type, &ce_req->remote_rtp_addr, ce_req->remote_rtp_port, &rem_osa);