From 650ab47886f60d04139ac8a4ab6680f6590d4b66 Mon Sep 17 00:00:00 2001 From: mbuhl Date: Thu, 16 Jan 2025 10:58:07 +0100 Subject: [PATCH] Remove dead store. --- modules/net/quic/timer.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/net/quic/timer.c b/modules/net/quic/timer.c index 50d8c9e..d6bfc36 100644 --- a/modules/net/quic/timer.c +++ b/modules/net/quic/timer.c @@ -86,7 +86,6 @@ static void quic_timer_loss_timeout(struct timer_list *t) void quic_timer_path_handler(struct sock *sk) { struct quic_path_addr *path; - struct quic_packet *packet; struct quic_frame *frame; u8 cnt, probe = 1; u32 timeout; @@ -95,7 +94,6 @@ void quic_timer_path_handler(struct sock *sk) return; timeout = quic_cong_pto(quic_cong(sk)) * 3; - packet = quic_packet(sk); path = quic_src(sk); cnt = quic_path_sent_cnt(path); if (cnt) {