csv

csv reading library
git clone git://bvnf.space/csv.git
Log | Files | Refs

commit 329eb1b14398a5fff712782202d9d81506c5a69d
parent 61ebbba6c46feee92117c278e0f2e71b81b9a39c
Author: aabacchus <ben@bvnf.space>
Date:   Tue, 22 Mar 2022 00:19:34 +0000

infinite loop typo

Diffstat:
Mlibcsv.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libcsv.c b/libcsv.c @@ -143,7 +143,7 @@ read_data(FILE *f, float ***datap, int ncols) { return nrows; cleanup: free(n); - for (int i = 0; i < nrows; y++) + for (int i = 0; i < nrows; i++) free(data[i]); return -1; }