public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/glib2] cve-2026-58016-f44: Fix up EPRM patch -- 3rd try lucky
@ 2026-08-11 10:37 Richard Hughes
0 siblings, 0 replies; only message in thread
From: Richard Hughes @ 2026-08-11 10:37 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/glib2
Branch : cve-2026-58016-f44
Commit : bcd5f09e8682019f8c817fcbb2c4bea050578036
Author : Richard Hughes <richard@hughsie.com>
Date : 2023-07-19T17:38:40+01:00
Stats : +1/-1 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/glib2/c/bcd5f09e8682019f8c817fcbb2c4bea050578036?branch=cve-2026-58016-f44
Log:
Fix up EPRM patch -- 3rd try lucky
---
diff --git a/gspawn-eperm.patch b/gspawn-eperm.patch
index 66036c9..0fa6bf3 100644
--- a/gspawn-eperm.patch
+++ b/gspawn-eperm.patch
@@ -37,7 +37,7 @@ index 67be6a6af..aaefd5b0d 100644
+ */
ret = close_range (lowfd, G_MAXUINT, 0);
- if (ret == 0 || errno != ENOSYS)
-+ if (ret == 0 || errno != ENOSYS || errno == EPERM)
++ if (ret == 0 || !(errno == ENOSYS || errno == EPERM))
return ret;
#endif /* HAVE_CLOSE_RANGE */
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-11 10:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-11 10:37 [rpms/glib2] cve-2026-58016-f44: Fix up EPRM patch -- 3rd try lucky Richard Hughes
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox