mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Fix MSVC compilation by adding useless initialization
This commit is contained in:
parent
ef80a65ff8
commit
41a496506f
1 changed files with 4 additions and 0 deletions
|
@ -3205,6 +3205,10 @@ send_ctl_resize_q (struct lsquic_send_ctl *ctl, struct lsquic_packets_tailq *q,
|
||||||
unsigned count_src = 0, count_dst = 0;
|
unsigned count_src = 0, count_dst = 0;
|
||||||
int idx;
|
int idx;
|
||||||
|
|
||||||
|
#ifdef MSVC
|
||||||
|
idx = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Initialize input, removing packets from source queue, filtering by path.
|
/* Initialize input, removing packets from source queue, filtering by path.
|
||||||
* Note: this may reorder packets from different paths.
|
* Note: this may reorder packets from different paths.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue