fix invalid read

This commit is contained in:
yihaoDeng 2022-04-29 15:27:05 +08:00
parent 80cc66f607
commit 7ff35f6f6a
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ static bool addHandleToAcceptloop(void* arg);
SExHandle* exh2 = uvAcquireExHandle(refId); \
if (exh2 == NULL || refId != exh2->refId) { \
tTrace("server handle %p except, may already freed, ignore msg, ref1: %" PRIu64 ", ref2 : %" PRIu64 "", exh1, \
exh1->refId, refId); \
exh2 ? exh2->refId : 0, refId); \
goto _return1; \
} \
} else if (refId == 0) { \