aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/csvreader.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/csvreader.cpp b/src/csvreader.cpp
index 08803e7..f3133c2 100644
--- a/src/csvreader.cpp
+++ b/src/csvreader.cpp
@@ -56,7 +56,10 @@ Bu::StrArray Bu::CsvReader::readLine()
56 { 56 {
57 i++; 57 i++;
58 if( !i ) 58 if( !i )
59 {
60 aVals.append("");
59 break; 61 break;
62 }
60 aVals.append( sDecode( i ) ); 63 aVals.append( sDecode( i ) );
61 } 64 }
62 else 65 else