From 62771f6b590e5aa46e4a4891d51c662d01978ec4 Mon Sep 17 00:00:00 2001 From: Phil Taylor Date: Thu, 18 Nov 2021 14:09:09 +0000 Subject: [PATCH] Fix silly bug in retransmit code --- udphandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/udphandler.cpp b/udphandler.cpp index 6ae6333..7e88181 100644 --- a/udphandler.cpp +++ b/udphandler.cpp @@ -1138,7 +1138,7 @@ void udpBase::dataReceived(QByteArray r) if (match == txSeqBuf.end()) { qDebug(logUdp()) << this->metaObject()->className() << ": Requested packet " << hex << seq << " not found"; // Just send idle packet. - sendControl(false, 0, match->seqNum); + sendControl(false, 0, seq); } else { // Found matching entry?