avoid double send
This commit is contained in:
parent
7d5f76c6f1
commit
67cd3ecd7f
|
@ -1299,6 +1299,9 @@ int transSendResponse(const STransMsg* msg) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
SExHandle* exh = msg->info.handle;
|
SExHandle* exh = msg->info.handle;
|
||||||
|
if (exh == NULL) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
int64_t refId = msg->info.refId;
|
int64_t refId = msg->info.refId;
|
||||||
ASYNC_CHECK_HANDLE(exh, refId);
|
ASYNC_CHECK_HANDLE(exh, refId);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue