forked from Bananymous/banan-os
Kernel: Add missing TRY() to font loading
This commit is contained in:
parent
ec2baeb276
commit
6e1825d6b4
|
@ -43,7 +43,7 @@ namespace Kernel
|
|||
BAN::Vector<uint8_t> file_data;
|
||||
TRY(file_data.resize(inode->size()));
|
||||
|
||||
inode->read(0, file_data.data(), file_data.size());
|
||||
TRY(inode->read(0, file_data.data(), file_data.size()));
|
||||
|
||||
if (file_data.size() < 4)
|
||||
return BAN::Error::from_error_code(ErrorCode::Font_FileTooSmall);
|
||||
|
|
Loading…
Reference in New Issue