提交 1d15ca5b 编写于 作者: wmmhello's avatar wmmhello

fix compile error in windows platform

上级 01ae544a
......@@ -526,9 +526,9 @@ void jsonKeyMd5(void *pMsg, int msgLen, void *pKey) {
bool isValidateTag(char *input) {
if (!input) return false;
int len = strlen(input);
size_t len = strlen(input);
if (len == 0) return false;
for (int i = 0; i < len; ++i) {
for (size_t i = 0; i < len; ++i) {
if (isprint(input[i]) == 0) return false;
}
return true;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册