Fixed a couple stupid mistakes

This commit is contained in:
Caleb J. Gardner
2026-06-17 22:30:53 -05:00
parent d4f069b57a
commit f47ef9ee46
3 changed files with 3 additions and 11 deletions
+1
View File
@@ -98,6 +98,7 @@ fn readVec(r: *Reader, vec: [][]u8) Reader.Error!usize {
@memcpy(v[0..to_cpy], r.buffer[r.seek..][0..to_cpy]);
wrote += to_cpy;
r.seek += to_cpy;
if (r.seek >= r.end) break;
}