Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion csv/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func Fuzz(data []byte) int {
var rec0 [][]string
for _, r := range rec {
if len(r) > 0 {
rec0 = append(rec0)
rec0 = append(rec0, r)
}
}

Expand Down