We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97be53f commit 54fe7d4Copy full SHA for 54fe7d4
src/zero_allocs/slice.zig
@@ -329,7 +329,7 @@ pub const FieldParser = struct {
329
const field_crs = match_crs & unquoted;
330
const field_lfs = match_lfs & unquoted;
331
332
- const expected_lfs = (match_crs << 1) | (self._state.prev_cr >> (chunk_size - 1));
+ const expected_lfs = (field_crs << 1) | (self._state.prev_cr >> (chunk_size - 1));
333
const masked_lfs = expected_lfs & field_lfs;
334
335
if (expected_lfs != masked_lfs) {
0 commit comments