1 Star 0 Fork 25

SuperSix173/procps-ng

forked from src-openEuler/procps-ng 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
openeuler-top-exit-with-error-when-pid-overflow.patch 898 Bytes
一键复制 编辑 原始数据 按行查看 历史
qiang.wei 提交于 2023-02-01 15:46 . Update to version 4.0.2
From 68bd42fb10cfaf278e841d2925da7f061820abd4 Mon Sep 17 00:00:00 2001
From: xuchunmei <xuchunmei@huawei.com>
Date: Wed, 23 Jan 2019 07:57:53 -0500
Subject: [PATCH] top: exit with error when pid overflow
Signed-off-by: xuchunmei <xuchunmei@huawei.com>
Signed-off-by: Qiang Wei <qiang.wei@suse.com>
---
top/top.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--- a/src/top/top.c
+++ b/src/top/top.c
@@ -4338,7 +4338,8 @@ static void parse_args (int argc, char *
if (Monpidsidx >= MONPIDMAX)
error_exit(fmtmk(N_fmt(LIMIT_exceed_fmt), MONPIDMAX));
if (1 != sscanf(cp, "%d", &pid)
- || strpbrk(cp, "+-."))
+ || strpbrk(cp, "+-.")
+ || 0 > pid)
error_exit(fmtmk(N_fmt(BAD_mon_pids_fmt), cp));
if (!pid) pid = getpid();
for (i = 0; i < Monpidsidx; i++)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/SuperSix173/procps-ng.git
git@gitee.com:SuperSix173/procps-ng.git
SuperSix173
procps-ng
procps-ng
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385