mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:24:57 +00:00
Everywhere: Remove unintentional partial stream reads and writes
This commit is contained in:
parent
26516ee160
commit
ae51c1821c
44 changed files with 109 additions and 192 deletions
|
@ -34,10 +34,8 @@ static ErrorOr<off_t> find_seek_pos(Core::File& file, int wanted_lines)
|
|||
|
||||
if (file.is_eof())
|
||||
break;
|
||||
Array<u8, 1> buffer;
|
||||
// FIXME: This should read the entire span.
|
||||
auto ch = TRY(file.read_some(buffer));
|
||||
if (*ch.data() == '\n' && (end - pos) > 1) {
|
||||
auto ch = TRY(file.read_value<u8>());
|
||||
if (ch == '\n' && (end - pos) > 1) {
|
||||
lines++;
|
||||
if (lines == wanted_lines)
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue