8 Star 0 Fork 15

src-anolis-os/gpgme

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
gpgme-1.3.2-core-Support-closefrom-also-for-glibc.patch 854 Bytes
一键复制 编辑 原始数据 按行查看 历史
Weisson 提交于 2024-11-05 19:07 . core: Support closefrom also for glibc.
From 525f58b1f187d8e009529381d186a7c8c1ac3ba2 Mon Sep 17 00:00:00 2001
From: Weisson <Weisson@linux.alibaba.com>
Date: Thu, 14 Sep 2023 14:42:11 +0800
Subject: [PATCH] core: Support closefrom also for glibc.
Signed-off-by: Weisson <Weisson@linux.alibaba.com>
---
src/posix-io.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/posix-io.c b/src/posix-io.c
index e712ef2..2a3a81f 100644
--- a/src/posix-io.c
+++ b/src/posix-io.c
@@ -570,7 +570,7 @@ _gpgme_io_spawn (const char *path, char *const argv[], unsigned int flags,
if (fd_list[i].fd > fd)
fd = fd_list[i].fd;
fd++;
-#if defined(__sun) || defined(__FreeBSD__)
+#if defined(__sun) || defined(__FreeBSD__) || defined(__GLIBC__)
closefrom (fd);
max_fds = fd;
#else /*!__sun */
--
2.19.1.6.gb485710b
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-anolis-os/gpgme.git
git@gitee.com:src-anolis-os/gpgme.git
src-anolis-os
gpgme
gpgme
a8

搜索帮助