Page MenuHomeFreeBSD

initgroups(3): Fix return value on allocation failure
ClosedPublic

Authored by olce on Sep 16 2025, 5:11 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, May 12, 12:41 PM
Unknown Object (File)
Thu, Apr 30, 8:52 PM
Unknown Object (File)
Tue, Apr 28, 4:04 AM
Unknown Object (File)
Tue, Apr 28, 4:00 AM
Unknown Object (File)
Thu, Apr 23, 2:20 AM
Unknown Object (File)
Wed, Apr 22, 1:29 AM
Unknown Object (File)
Wed, Apr 22, 1:23 AM
Unknown Object (File)
Sun, Apr 19, 6:15 AM
Subscribers

Details

Summary

We must not return ENOMEM, but rather -1 with 'errno' set to ENOMEM, as
described in the manual page and as other implementations are doing.
A malloc() failure actually already sets ENOMEM for us. Add comments
indicating which function set 'errno' each time we return.

While here, improve style and remove useless headers.

Fixes: 54404cfb13d4 ("In preparation for raising NGROUPS and NGROUPS_MAX, ...")
MFC after: 1 week
Sponsored by: The FreeBSD Foundation

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

olce requested review of this revision.Sep 16 2025, 5:11 PM
This revision is now accepted and ready to land.Sep 16 2025, 5:49 PM