Signed-off-by: xuraoqing <xuraoqing@huawei.com> (cherry picked from commit 5340064e1681d217a1773f5accb0eb93cc53c71d)
29 lines
759 B
Diff
29 lines
759 B
Diff
From d0ea8de883a2487dfde8bfa377b64df1194ed5cb Mon Sep 17 00:00:00 2001
|
|
From: abushwang <wangshuo_1994@foxmail.com>
|
|
Date: Wed, 28 Dec 2022 15:06:02 +0800
|
|
Subject: [PATCH] Fix kpropd crash with unrecognized option
|
|
|
|
ticket: 9083 (new)
|
|
tags: pullup
|
|
target_version: 1.20-next
|
|
target_version: 1.19-next
|
|
---
|
|
src/kprop/kpropd.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/kprop/kpropd.c b/src/kprop/kpropd.c
|
|
index f2341d720..aa3c81ea3 100644
|
|
--- a/src/kprop/kpropd.c
|
|
+++ b/src/kprop/kpropd.c
|
|
@@ -1047,6 +1047,7 @@ parse_args(int argc, char **argv)
|
|
enum { PID_FILE = 256 };
|
|
struct option long_options[] = {
|
|
{ "pid-file", 1, NULL, PID_FILE },
|
|
+ { NULL, 0, NULL, 0 },
|
|
};
|
|
|
|
memset(¶ms, 0, sizeof(params));
|
|
--
|
|
2.27.0
|
|
|