1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-31 15:43:57 +00:00

Fixed bug where I forgot to set the Tail of the pending queue when I added an item, when there was already an item

This commit is contained in:
Bryan Roe
2020-08-11 15:21:38 -07:00
parent 42dcbc8e4d
commit 79e89787f3

View File

@@ -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)