mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 03:09:08 +00:00
Everywhere: Remove unintentional partial stream reads and writes
This commit is contained in:
committed by
Linus Groh
parent
26516ee160
commit
ae51c1821c
@@ -211,8 +211,7 @@ TEST_CASE(regression)
|
||||
auto file = MUST(Core::File::open(path, Core::File::OpenMode::Read));
|
||||
auto file_size = MUST(file->size());
|
||||
auto content = MUST(ByteBuffer::create_uninitialized(file_size));
|
||||
// FIXME: This should read the entire span.
|
||||
MUST(file->read_some(content.bytes()));
|
||||
MUST(file->read_until_filled(content.bytes()));
|
||||
DeprecatedString file_contents { content.bytes() };
|
||||
auto tokens = run_tokenizer(file_contents);
|
||||
u32 hash = hash_tokens(tokens);
|
||||
|
||||
Reference in New Issue
Block a user