Closed GoogleCodeExporter closed 8 years ago
Original comment by nbutterworth1953@gmail.com
on 6 Aug 2011 at 7:33
A quick fix for Linux users. In the file csved_exec.cpp, locate the function
MakeParam and change the statement:
return (unsigned int) n < row.size() ? row[n] : "";
to:
return (unsigned int) n < row.size()
? ALib::Escape( row[n], "\\'\"", "\\" )
: "";
then rebuild with:
make lin
Do not apply this fix to code that is to be built for Windows.
Original comment by nbutterworth1953@gmail.com
on 7 Aug 2011 at 9:41
Original issue reported on code.google.com by
radhermit
on 5 Aug 2011 at 4:24