Merge pull request #29272 from taosdata/fix/main/TD-33219-2

fix some error case
This commit is contained in:
Shengliang Guan 2024-12-23 13:40:07 +08:00 committed by GitHub
commit 539be87acb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -509,6 +509,9 @@ int32_t qBindStmtTagsValue2(void* pBlock, void* boundTags, int64_t suid, const c
STag* pTag = NULL;
for (int c = 0; c < tags->numOfBound; ++c) {
if (bind == NULL) {
break;
}
if (bind[c].is_null && bind[c].is_null[0]) {
continue;
}