This commit is contained in:
Hui Li 2020-07-15 15:17:48 +08:00
parent f7e89d56b6
commit fc5f3cfc47
1 changed files with 2 additions and 1 deletions

View File

@ -6499,7 +6499,8 @@ void* qOpenQueryMgmt(int32_t vgId) {
}
static void queryMgmtKillQueryFn(void* handle) {
qKillQuery(handle);
void** fp = (void**)handle;
qKillQuery(*fp);
}
void qQueryMgmtNotifyClosed(void* pQMgmt) {