fix: avoid some memory leaks (#136)

---------

Co-authored-by: leejet <leejet714@gmail.com>
This commit is contained in:
Erik Scholz
2024-01-01 16:27:29 +01:00
committed by GitHub
parent 4a5e7b58e2
commit f2e4d9793b
2 changed files with 6 additions and 2 deletions

View File

@@ -560,6 +560,7 @@ int main(int argc, const char* argv[]) {
if (results == NULL) {
printf("generate failed\n");
free_sd_ctx(sd_ctx);
return 1;
}
@@ -600,6 +601,8 @@ int main(int argc, const char* argv[]) {
free(results[i].data);
results[i].data = NULL;
}
free(results);
free_sd_ctx(sd_ctx);
return 0;
}