GNOME Bugzilla – Bug 687177
CSV splitting is faulty.
Last modified: 2012-11-01 12:37:11 UTC
Created attachment 227617 [details] [review] Fix CSV splitting. It does not add the last value in CSV to list (so 'a,b' results in list with only 'a'). Also chokes on empty values like 'a,,b' (list containing 'a', comma and empty string - garbage in general). Escaping backslashes should be removed from values list (so 'a,\,,b' should result in list of 'a', comma and 'b'). Attached patch should fix those issues.