Merge pull request #22 from crclark96/crclark96-memleak-patch

free malloc'd memory at end of file
This commit is contained in:
Lewis Van Winkle
2018-07-07 18:41:33 -05:00
committed by GitHub

View File

@@ -109,6 +109,8 @@ int main(int argc, char *argv[])
genann_free(ann);
free(input);
free(class);
return 0;
}