Merge branch 'bugfix' of https://gitea.fhgr.ch/schurtisimon/StudyPlanner into bugfix
commit
1f54110aa5
4
src/db.c
4
src/db.c
|
@ -63,8 +63,7 @@ llist *write_csv_to_llist(const char *filename) {
|
||||||
int count = 0; // task counter
|
int count = 0; // task counter
|
||||||
fgets(line, sizeof(line), file); // read and ignore file head
|
fgets(line, sizeof(line), file); // read and ignore file head
|
||||||
|
|
||||||
while (fgets(line, sizeof(line), file)) {
|
while (fgets(line, sizeof(line), file)){
|
||||||
memset(line, 0, sizeof(line));
|
|
||||||
count++;
|
count++;
|
||||||
// remove newline sign
|
// remove newline sign
|
||||||
line[strcspn(line, "\n")] = '\0';
|
line[strcspn(line, "\n")] = '\0';
|
||||||
|
@ -102,3 +101,4 @@ llist *write_csv_to_llist(const char *filename) {
|
||||||
}
|
}
|
||||||
return list; // null on error
|
return list; // null on error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue