1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

SystemServer: Call endgrent() after we're finished looking up groups

This commit is contained in:
Andreas Kling 2021-03-29 20:44:41 +02:00
parent 3cd8d7e968
commit 2036d7518a

View file

@ -153,6 +153,8 @@ static void prepare_devfs()
if (rc < 0) {
VERIFY_NOT_REACHED();
}
endgrent();
}
static void mount_all_filesystems()