more code

This commit is contained in:
Hongze Cheng 2023-04-07 14:23:42 +08:00
parent 4e8e3854a7
commit d370d6a662
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@
static int32_t create_file_system(STsdb *pTsdb, struct STFileSystem **ppFS) {
ppFS[0] = taosMemoryCalloc(1, sizeof(*ppFS[0]));
if (ppFS[0] == NULL) return TSDB_CODE_OUT_OF_MEMORY;
ppFS[0]->pTsdb = pTsdb;
return 0;
}