handle except

This commit is contained in:
yihaoDeng 2022-06-23 21:40:12 +08:00
parent d63eb11b70
commit 78be460ac3
1 changed files with 1 additions and 2 deletions

View File

@ -715,8 +715,7 @@ static void cliHandleRelease(SCliMsg* pMsg, SCliThrd* pThrd) {
int64_t refId = (int64_t)(pMsg->msg.info.handle); int64_t refId = (int64_t)(pMsg->msg.info.handle);
SExHandle* exh = transAcquireExHandle(refMgt, refId); SExHandle* exh = transAcquireExHandle(refMgt, refId);
if (exh == NULL) { if (exh == NULL) {
tDebug("%" PRid64 " already release", refId); tDebug("%" PRId64 " already release", refId);
return NULL;
} }
SCliConn* conn = exh->handle; SCliConn* conn = exh->handle;