Merge pull request #1531 from taosdata/feature/dnode

handle a reference counting bug
This commit is contained in:
slguan 2020-04-06 00:57:07 +08:00 committed by GitHub
commit 272591b3bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ static void dnodeProcessRetrieveMsg(void *pVnode, SReadMsg *pMsg) {
dnodeContinueExecuteQuery(pVnode, pQInfo, pMsg);
} else { // no further execution invoked, release the ref to vnode
dnodeProcessReadResult(pVnode, pMsg);
vnodeRelease(pVnode);
//vnodeRelease(pVnode);
}
}