1 Star 0 Fork 1

MinecraftXiaoXiao / dropbear

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
dbhelpers.c 362 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include "dbhelpers.h"
#include "includes.h"
/* Erase data */
void m_burn(void *data, unsigned int len) {
#if defined(HAVE_MEMSET_S)
memset_s(data, len, 0x0, len);
#elif defined(HAVE_EXPLICIT_BZERO)
explicit_bzero(data, len);
#else
/* This must be volatile to avoid compiler optimisation */
volatile void *p = data;
memset((void*)p, 0x0, len);
#endif
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mods_mc/dropbear.git
git@gitee.com:mods_mc/dropbear.git
mods_mc
dropbear
dropbear
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891