Skip to content

Commit 54fe7d4

Browse files
author
mtolman
committed
fixed bug
1 parent 97be53f commit 54fe7d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zero_allocs/slice.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ pub const FieldParser = struct {
329329
const field_crs = match_crs & unquoted;
330330
const field_lfs = match_lfs & unquoted;
331331

332-
const expected_lfs = (match_crs << 1) | (self._state.prev_cr >> (chunk_size - 1));
332+
const expected_lfs = (field_crs << 1) | (self._state.prev_cr >> (chunk_size - 1));
333333
const masked_lfs = expected_lfs & field_lfs;
334334

335335
if (expected_lfs != masked_lfs) {

0 commit comments

Comments
 (0)