From 14705844d7b7553965f20c4553b678869a9eefbc Mon Sep 17 00:00:00 2001 From: wildjan Date: Mon, 16 Dec 2024 10:41:51 +0100 Subject: [PATCH] =?UTF-8?q?Buffer=20reset=20gel=C3=B6scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/db.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/db.c b/src/db.c index 300b1a1..c05c570 100644 --- a/src/db.c +++ b/src/db.c @@ -63,8 +63,7 @@ llist *write_csv_to_llist(const char *filename) { int count = 0; // task counter fgets(line, sizeof(line), file); // read and ignore file head - while (fgets(line, sizeof(line), file)) { - memset(line, 0, sizeof(line)); + while (fgets(line, sizeof(line), file)); count++; // remove newline sign line[strcspn(line, "\n")] = '\0';