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

This commit is contained in:
Digicrat 2019-07-26 16:15:16 -04:00 committed by Andre Puschmann
parent 635752c42e
commit 86ec3101e0
1 changed files with 1 additions and 1 deletions

View File

@ -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) {