1 Star 0 Fork 49

liyunqing_kl/lwip

forked from src-openEuler/lwip 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0061-fix-pbuf-leak-in-udp-connection.patch 796 Bytes
一键复制 编辑 原始数据 按行查看 历史
jinag12 提交于 2024-02-06 10:45 . adapt lwip-2.2.0
From 21f7f9a5bdfd5d2f592af19e73647a48fdbb7bf1 Mon Sep 17 00:00:00 2001
From: kircher <[email protected]>
Date: Tue, 16 May 2023 19:07:42 +0800
Subject: [PATCH] fix pbuf leak in udp connection
---
src/core/udp.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/core/udp.c b/src/core/udp.c
index 8a01c76..6261c86 100644
--- a/src/core/udp.c
+++ b/src/core/udp.c
@@ -933,8 +933,11 @@ udp_sendto_if_src_chksum(struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *d
/* @todo: must this be increased even if error occurred? */
MIB2_STATS_INC(mib2.udpoutdatagrams);
+#if !GAZELLE_ENABLE
/* did we chain a separate header pbuf earlier? */
- if (q != p) {
+ if (q != p)
+#endif
+ {
/* free the header pbuf */
pbuf_free(q);
q = NULL;
--
2.33.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/li_yunq/lwip.git
[email protected]:li_yunq/lwip.git
li_yunq
lwip
lwip
master

搜索帮助