1 Star 0 Fork 48

yinbin6/lwip

forked from src-openEuler/lwip 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0162-check-if-mem_init-returns-errno.patch 823 Bytes
一键复制 编辑 原始数据 按行查看 历史
yinbin6 提交于 2024-08-20 19:38 . check if mem_init returns errno
From d62c3da349d4e255d1f81b2f28db938027a1b73a Mon Sep 17 00:00:00 2001
From: yinbin <yinbin8@huawei.com>
Date: Tue, 20 Aug 2024 19:05:43 +0800
Subject: [PATCH] check if mem_init returns errno
---
src/core/init.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/src/core/init.c b/src/core/init.c
index dbe89d7..e6cd9b6 100644
--- a/src/core/init.c
+++ b/src/core/init.c
@@ -357,9 +357,14 @@ lwip_init(void)
sys_init();
#endif /* !NO_SYS */
mem_init();
+#if GAZELLE_ENABLE
+ /* mem_init() will set failed errno. */
+ if (errno != 0)
+ return;
+#endif /* GAZELLE_ENABLE */
memp_init();
#if GAZELLE_ENABLE
- /* mem_init() and memp_init() will set failed errno. */
+ /* memp_init() will set failed errno. */
if (errno != 0)
return;
#endif /* GAZELLE_ENABLE */
--
2.34.1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yinbin6/lwip.git
git@gitee.com:yinbin6/lwip.git
yinbin6
lwip
lwip
master

搜索帮助