124 Star 0 Fork 31

src-openEuler/clamav

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fix-clamonacc-w-error.patch 791 Bytes
一键复制 编辑 原始数据 按行查看 历史
lyn 提交于 2022-05-26 12:04 . Fix clamonacc -w error
From e5de0bd90f856ed8c9b4e05e6e9c4f46920112a6 Mon Sep 17 00:00:00 2001
From: chen-jan <chen_aka_jan@163.com>
Date: Tue, 7 Dec 2021 08:18:21 +0000
Subject: [PATCH] fix clamonacc -w error
---
clamonacc/client/client.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/clamonacc/client/client.c b/clamonacc/client/client.c
index 347070f..f507eee 100644
--- a/clamonacc/client/client.c
+++ b/clamonacc/client/client.c
@@ -205,7 +205,7 @@ int16_t onas_ping_clamd(struct onas_context **ctx)
/* ping command takes the form --ping [attempts[:interval]] */
opt = optget((*ctx)->opts, "ping");
- if (opt) {
+ if (opt && opt->strarg) {
attempt_str = cli_strdup(opt->strarg);
if (attempt_str) {
if (NULL == attempt_str) {
--
2.30.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/clamav.git
git@gitee.com:src-openeuler/clamav.git
src-openeuler
clamav
clamav
master

搜索帮助