fix bug in issue #946 [tbase-1359]

This commit is contained in:
hjxilinx 2019-12-21 15:19:13 +08:00
parent f6d56d843b
commit 9904067b76
1 changed files with 1 additions and 1 deletions

View File

@ -640,7 +640,7 @@ int32_t tscGetDataBlockFromList(void* pHashList, SDataBlockList* pDataBlockList,
return ret; return ret;
} }
*dataBlocks = *(STableDataBlocks**)taosAddIntHash(pHashList, id, (char*)(*dataBlocks)); *dataBlocks = *(STableDataBlocks**)taosAddIntHash(pHashList, id, (char*)dataBlocks);
tscAppendDataBlock(pDataBlockList, *dataBlocks); tscAppendDataBlock(pDataBlockList, *dataBlocks);
} }