handle except

This commit is contained in:
yihaoDeng 2022-03-25 17:53:32 +08:00
parent e561496466
commit 6591f1f9b5
1 changed files with 2 additions and 1 deletions

View File

@ -292,7 +292,8 @@ void uvOnSendCb(uv_write_t* req, int status) {
}
transQueuePop(&conn->srvMsgs);
tfree(msg);
msg = (SSrvMsg*)transQueuePop(&conn->srvMsgs);
msg = (SSrvMsg*)transQueueGet(&conn->srvMsgs, 0);
if (msg != NULL) {
uvStartSendRespInternal(msg);
}