fix query ctx crash

This commit is contained in:
yihaoDeng 2022-05-25 16:42:29 +08:00
parent e256a0dbe3
commit b0b533e002
1 changed files with 1 additions and 0 deletions

View File

@ -245,6 +245,7 @@ void transCtxMerge(STransCtx* dst, STransCtx* src) {
if (dst->args == NULL) {
dst->args = src->args;
dst->brokenVal = src->brokenVal;
dst->freeFunc = src->freeFunc;
src->args = NULL;
return;
}