From 55ba457fef7d04138cc9f956d10bd7167ea38ca4 Mon Sep 17 00:00:00 2001 From: shenglian zhou Date: Thu, 30 Mar 2023 12:05:56 +0800 Subject: [PATCH] fix: fix bugs --- source/common/src/tmsg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/src/tmsg.c b/source/common/src/tmsg.c index b4945da699..fdfa2b2bce 100644 --- a/source/common/src/tmsg.c +++ b/source/common/src/tmsg.c @@ -1746,7 +1746,7 @@ int32_t tDeserializeSCreateFuncReq(void *buf, int32_t bufLen, SCreateFuncReq *pR if (tDecodeCStrTo(&decoder, pReq->pComment) < 0) return -1; } - if (tDecoodeI8(&decoder, &pReq->orReplace) < 0) return -1; + if (tDecodeI8(&decoder, &pReq->orReplace) < 0) return -1; tEndDecode(&decoder); -- GitLab