mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 06:02:07 +03:00
usermod: Simplify uid validation
This commit is contained in:
parent
e86dd1cc89
commit
99f763cab3
Notes:
sideshowbarker
2024-07-17 08:25:15 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/99f763cab3 Pull-request: https://github.com/SerenityOS/serenity/pull/19428
@ -27,7 +27,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
||||
TRY(Core::System::pledge("stdio wpath rpath cpath fattr tty"));
|
||||
TRY(Core::System::unveil("/etc", "rwc"));
|
||||
|
||||
int uid = 0;
|
||||
uid_t uid = 0;
|
||||
int gid = 0;
|
||||
bool lock = false;
|
||||
bool unlock = false;
|
||||
@ -75,12 +75,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
||||
unveil(nullptr, nullptr);
|
||||
|
||||
if (uid) {
|
||||
if (uid < 0) {
|
||||
warnln("invalid uid {}", uid);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (getpwuid(static_cast<uid_t>(uid))) {
|
||||
if (getpwuid(uid)) {
|
||||
warnln("uid {} already exists", uid);
|
||||
return 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user