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
commit 1afe9688d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

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