Fix bug wherein blank lines or trailing newlines causes parsing of user_db.csv to fail.

master
Digicrat 5 years ago committed by Andre Puschmann
parent f715412659
commit 743f1e2e8c

@ -110,7 +110,7 @@ bool hss::read_db_file(std::string db_filename)
std::string line;
while (std::getline(m_db_file, line)) {
if (line[0] != '#') {
if (line[0] != '#' && line.length() > 0) {
uint column_size = 10;
std::vector<std::string> split = split_string(line, ',');
if (split.size() != column_size) {

Loading…
Cancel
Save