From 79e89787f385afe04555494af049c62186f3caf3 Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Tue, 11 Aug 2020 15:21:38 -0700 Subject: [PATCH] Fixed bug where I forgot to set the Tail of the pending queue when I added an item, when there was already an item --- microstack/ILibAsyncSocket.c | 1 + 1 file changed, 1 insertion(+) diff --git a/microstack/ILibAsyncSocket.c b/microstack/ILibAsyncSocket.c index 92b4325..d52cf67 100644 --- a/microstack/ILibAsyncSocket.c +++ b/microstack/ILibAsyncSocket.c @@ -698,6 +698,7 @@ ILibAsyncSocket_SendStatus ILibAsyncSocket_SendTo_MultiWrite(ILibAsyncSocket_Soc else { module->PendingSend_Tail->Next = data; + module->PendingSend_Tail = data; } } else if (module->PendingSend_Tail == NULL && module->FinConnect != 0)