fix(tsdb): fix memory leak.
This commit is contained in:
parent
d89806970e
commit
d3f6892345
|
@ -581,7 +581,10 @@ int32_t tsdbTFileSetInitRef(STsdb *pTsdb, const STFileSet *fset1, STFileSet **fs
|
||||||
}
|
}
|
||||||
|
|
||||||
code = TARRAY2_APPEND(fset[0]->lvlArr, lvl);
|
code = TARRAY2_APPEND(fset[0]->lvlArr, lvl);
|
||||||
if (code) return code;
|
if (code) {
|
||||||
|
tsdbTFileSetClear(fset);
|
||||||
|
return code;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue