From 522729fd4556d05b61607789ae5a0282c23ef776 Mon Sep 17 00:00:00 2001 From: WXK <287788329@qq.com> Date: 星期四, 11 四月 2024 10:05:26 +0800 Subject: [PATCH] V1.8,修改充电灯的逻辑,改为正式频率 --- FML/Internet/Module.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FML/Internet/Module.c b/FML/Internet/Module.c index f642494..c95a292 100644 --- a/FML/Internet/Module.c +++ b/FML/Internet/Module.c @@ -293,8 +293,8 @@ { if(_u32CCIDLen < MODULE_CCID_SIZE) { - memcpy(l_acCCID, _pcCCID, _u32CCIDLen); - l_acCCID[_u32CCIDLen] = '\0'; + memcpy(l_acCCID, _pcCCID, _u32CCIDLen-2); +// l_acCCID[_u32CCIDLen] = '\0'; } return HIDO_OK; -- Gitblit v1.9.3