Subject: | Trailing field with just a '0' will cause death |
$ cat test.csv
1,2,3
2,3,4
8,9,0
3,4,5
$ perl -MText::CSV::Easy_PP=csv_parse -wE'say @{csv_parse ($_)} for <>' test.csv
invalid line: 8,9,0
at -e line 1.
Which is line 116 in Easy_PP.pm