Merge remote-tracking branch 'origin/fix/liaohj' into fix/liaohj

This commit is contained in:
Haojun Liao 2023-09-23 14:13:53 +08:00
commit 0436977d63
1 changed files with 4 additions and 1 deletions

View File

@ -1299,7 +1299,10 @@ int transSendResponse(const STransMsg* msg) {
return 0;
}
SExHandle* exh = msg->info.handle;
int64_t refId = msg->info.refId;
if (exh == NULL) {
return 0;
}
int64_t refId = msg->info.refId;
ASYNC_CHECK_HANDLE(exh, refId);
STransMsg tmsg = *msg;