提交 83468a77 编写于 作者: dengyihao's avatar dengyihao

fix state mem leak

上级 111481ce
...@@ -1632,6 +1632,12 @@ int32_t streamStateSessionGetKVByCur_rocksdb(SStreamStateCur* pCur, SSessionKey* ...@@ -1632,6 +1632,12 @@ int32_t streamStateSessionGetKVByCur_rocksdb(SStreamStateCur* pCur, SSessionKey*
taosMemoryFree(val); taosMemoryFree(val);
return -1; return -1;
} }
if (pVal != NULL) {
*pVal = (char*)val;
} else {
taosMemoryFree(val);
}
*pKey = pKTmp->key; *pKey = pKTmp->key;
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册