1 Star 0 Fork 49

compile_success/lwip

forked from src-openEuler/lwip 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0101-fix-wrong-namelen-in-getaddrname.patch 584 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhengjiebing 提交于 2024-01-08 15:31 . fix wrong namelen in getaddrname
src/api/sockets.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/api/sockets.c b/src/api/sockets.c
index 15053b3..c987a2b 100644
--- a/src/api/sockets.c
+++ b/src/api/sockets.c
@@ -3020,7 +3020,8 @@ lwip_getaddrname(int s, struct sockaddr *name, socklen_t *namelen, u8_t local)
*namelen = saddr.sa.sa_len;
}
#else
- *namelen = LWIP_MIN(*namelen, sizeof(saddr));
+ u8_t sa_len = IP_IS_V4_VAL(naddr) ? sizeof(struct sockaddr_in) : sizeof(struct sockaddr_in6);
+ *namelen = LWIP_MIN(*namelen, sa_len);
#endif
MEMCPY(name, &saddr, *namelen);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/compile_success/lwip.git
[email protected]:compile_success/lwip.git
compile_success
lwip
lwip
master

搜索帮助