This commit is contained in:
dmchen 2023-09-18 17:38:58 +08:00
parent a33d687f79
commit bdb0a1b84e
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
if(pReq->sqlLen > 0){ \
pReq->sql = taosMemoryCalloc(1, pReq->sqlLen + 1); \
if (pReq->sql == NULL) return -1; \
if (tDecodeCStrAndLen(&decoder, &pReq->sql, &pReq->sqlLen) < 0) return -1; \
if (tDecodeCStrTo(&decoder, &pReq->sql) < 0) return -1; \
} \
} \
} while (0)