1 Star 0 Fork 25

EulerOSWander/procps-ng

forked from src-openEuler/procps-ng 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
backport-0013-kill-Fix-argument-handling-for-negative-PIDs.patch 719 Bytes
一键复制 编辑 原始数据 按行查看 历史
EulerOSWander 提交于 2021-02-27 15:35 . sync upstream patches
From 79097e55e4b08ec8c1de8332e32cf03c4be1d4ec Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rapha=C3=ABl=20Jakse?= <raphael.gitlab@jakse.fr>
Date: Fri, 7 Sep 2018 12:57:03 +0000
Subject: [PATCH] kill: Fix argument handling for negative PIDs
---
skill.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/skill.c b/skill.c
index 5a79a41..38ebdc5 100644
--- a/skill.c
+++ b/skill.c
@@ -507,7 +507,7 @@ static void __attribute__ ((__noreturn__))
} else {
/* Special case for signal digit negative
* PIDs */
- pid = atoi(argv[optind]);
+ pid = atoi(argv[optind-1]);
if (kill((pid_t)pid, signo) != 0)
exitvalue = EXIT_FAILURE;
exit(exitvalue);
--
2.27.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/euleroswander/procps-ng.git
git@gitee.com:euleroswander/procps-ng.git
euleroswander
procps-ng
procps-ng
master

搜索帮助