未验证 提交 b627f69c 编写于 作者: S Shengliang Guan 提交者: GitHub

Merge pull request #5318 from taosdata/fix/TD-3124

[TD-3124]<fix>: stop & free TAOS_RES *result post http queue shutdown
......@@ -59,7 +59,9 @@ void httpDispatchToResultQueue(void *param, TAOS_RES *result, int32_t code, int3
pMsg->fp = fp;
taosWriteQitem(tsHttpQueue, TAOS_QTYPE_RPC, pMsg);
} else {
(*fp)(param, result, code, rows);
taos_stop_query(result);
taos_free_result(result);
//(*fp)(param, result, code, rows);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册