Merge branch 'backport-2180-close_range-glib-2-68' into 'glib-2-68'

Backport !2180 “correctly use 3 parameters for close_range” to glib-2-68

See merge request GNOME/glib!2183
This commit is contained in:
Emmanuele Bassi 2021-07-09 12:27:02 +00:00
commit 63e7864d1a

View File

@ -1494,7 +1494,7 @@ safe_closefrom (int lowfd)
*
* Handle ENOSYS in case its supported in libc but not the kernel; if so,
* fall back to safe_fdwalk(). */
if (close_range (lowfd, G_MAXUINT) != 0 && errno == ENOSYS)
if (close_range (lowfd, G_MAXUINT, 0) != 0 && errno == ENOSYS)
#endif /* HAVE_CLOSE_RANGE */
(void) safe_fdwalk (close_func, GINT_TO_POINTER (lowfd));
#endif