Merge pull request #534 from wheremyfoodat/crypto

Downgrade SetFileSize failure to warning
This commit is contained in:
wheremyfoodat 2024-07-14 20:18:38 +00:00 committed by GitHub
commit 8eab353491
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -184,7 +184,8 @@ void Kernel::setFileSize(u32 messagePointer, Handle fileHandle) {
if (success) {
mem.write32(messagePointer + 4, Result::Success);
} else {
Helpers::panic("FileOp::SetFileSize failed");
Helpers::warn("FileOp::SetFileSize failed");
mem.write32(messagePointer + 4, Result::FailurePlaceholder);
}
} else {
Helpers::panic("Tried to set file size of file without file descriptor");