mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
Kernel: Dont crash if power states gets set to an invalid value
This commit is contained in:
parent
b4113536ef
commit
ab298ca106
Notes:
sideshowbarker
2024-07-17 20:33:50 +09:00
Author: https://github.com/cqundefine Commit: https://github.com/SerenityOS/serenity/commit/ab298ca106 Pull-request: https://github.com/SerenityOS/serenity/pull/17528 Reviewed-by: https://github.com/AtkinsSJ ✅
@ -57,11 +57,7 @@ ErrorOr<size_t> SysFSPowerStateSwitchNode::write_bytes(off_t offset, size_t coun
|
||||
return Error::from_errno(EINVAL);
|
||||
char buf[1];
|
||||
TRY(data.read(buf, 1));
|
||||
if (buf[0] == '0')
|
||||
return Error::from_errno(EINVAL);
|
||||
switch (buf[0]) {
|
||||
case '0':
|
||||
VERIFY_NOT_REACHED();
|
||||
case '1':
|
||||
reboot();
|
||||
VERIFY_NOT_REACHED();
|
||||
@ -69,7 +65,7 @@ ErrorOr<size_t> SysFSPowerStateSwitchNode::write_bytes(off_t offset, size_t coun
|
||||
poweroff();
|
||||
VERIFY_NOT_REACHED();
|
||||
default:
|
||||
VERIFY_NOT_REACHED();
|
||||
return Error::from_errno(EINVAL);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user