diff --git a/internal/ackhandler/sent_packet_handler.go b/internal/ackhandler/sent_packet_handler.go index dd8988f0..b9376136 100644 --- a/internal/ackhandler/sent_packet_handler.go +++ b/internal/ackhandler/sent_packet_handler.go @@ -483,14 +483,13 @@ func (h *sentPacketHandler) getPTOTimeAndSpace() (pto time.Time, encLevel protoc } func (h *sentPacketHandler) hasOutstandingCryptoPackets() bool { - var hasInitial, hasHandshake bool - if h.initialPackets != nil { - hasInitial = h.initialPackets.history.HasOutstandingPackets() + if h.initialPackets != nil && h.initialPackets.history.HasOutstandingPackets() { + return true } - if h.handshakePackets != nil { - hasHandshake = h.handshakePackets.history.HasOutstandingPackets() + if h.handshakePackets != nil && h.handshakePackets.history.HasOutstandingPackets() { + return true } - return hasInitial || hasHandshake + return false } func (h *sentPacketHandler) hasOutstandingPackets() bool {