fix coverity issues
This commit is contained in:
parent
c83f9708b9
commit
993be0518a
|
@ -577,8 +577,7 @@ static void tQueryIndexColumn(SSkipList* pSkipList, tQueryInfo* pQueryInfo, SArr
|
|||
assert(0);
|
||||
}
|
||||
} else {
|
||||
int32_t optr = cond.end->optr;
|
||||
|
||||
int32_t optr = cond.end ? cond.end->optr : TSDB_RELATION_INVALID;
|
||||
if (optr == TSDB_RELATION_LESS || optr == TSDB_RELATION_LESS_EQUAL) {
|
||||
bool comp = true;
|
||||
int32_t ret = 0;
|
||||
|
|
|
@ -283,7 +283,7 @@ tMemBucket *tMemBucketCreate(int32_t totalSlots, int32_t nBufferSize, int16_t nE
|
|||
break;
|
||||
};
|
||||
default: {
|
||||
uError("MemBucket:%p,not support data type %d,failed", *pBucket, pBucket->dataType);
|
||||
uError("MemBucket:%p,not support data type %d,failed", pBucket, pBucket->dataType);
|
||||
tfree(pBucket);
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue