mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 11:28:22 +00:00
fix(fileio): copy to correct buffer position when reading
fixes #29186 (likely)
fixup for #29093 064483a2b
This commit is contained in:
@@ -300,7 +300,7 @@ ptrdiff_t file_read(FileDescriptor *const fp, char *const ret_buf, const size_t
|
|||||||
} else {
|
} else {
|
||||||
fp->write_pos += r_ret;
|
fp->write_pos += r_ret;
|
||||||
size_t to_copy = MIN((size_t)r_ret, read_remaining);
|
size_t to_copy = MIN((size_t)r_ret, read_remaining);
|
||||||
memcpy(ret_buf, fp->read_pos, to_copy);
|
memcpy(buf, fp->read_pos, to_copy);
|
||||||
fp->read_pos += to_copy;
|
fp->read_pos += to_copy;
|
||||||
read_remaining -= to_copy;
|
read_remaining -= to_copy;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user