fix: zero cell coder

This commit is contained in:
Minglei Jin 2022-08-04 20:04:34 +08:00
parent d5c36c6536
commit 938c6e4c05
1 changed files with 2 additions and 2 deletions

View File

@ -735,7 +735,7 @@ static int tdbBtreeBalanceNonRoot(SBTree *pBt, SPage *pParent, int idx, TXN *pTx
int szCell; int szCell;
SBtreeInitPageArg iarg; SBtreeInitPageArg iarg;
int iNew, nNewCells; int iNew, nNewCells;
SCellDecoder cd; SCellDecoder cd = {0};
iarg.pBt = pBt; iarg.pBt = pBt;
iarg.flags = TDB_BTREE_PAGE_GET_FLAGS(pOlds[0]); iarg.flags = TDB_BTREE_PAGE_GET_FLAGS(pOlds[0]);
@ -1716,7 +1716,7 @@ int tdbBtreeNext(SBTC *pBtc, void **ppKey, int *kLen, void **ppVal, int *vLen) {
int tdbBtreePrev(SBTC *pBtc, void **ppKey, int *kLen, void **ppVal, int *vLen) { int tdbBtreePrev(SBTC *pBtc, void **ppKey, int *kLen, void **ppVal, int *vLen) {
SCell *pCell; SCell *pCell;
SCellDecoder cd; SCellDecoder cd = {0};
void *pKey, *pVal; void *pKey, *pVal;
int ret; int ret;