refactor: Added free function for package struct.

While going through with the renaming, I saw that I actually forgot to implement that part.
pull/6/head
GreekStapler 2023-01-29 11:55:22 +00:00
parent 76e4adae92
commit 03bae82569
2 changed files with 11 additions and 0 deletions

View File

@ -221,3 +221,12 @@ char *vieter_package_to_description(Pkg *pkg) {
return description;
}
void vieter_package_free(Pkg **ptp) {
FREE_STRING((*ptp)->path);
vieter_package_info_free((*ptp)->info);
vieter_package_dynarray_free((*ptp)->files);
free(*ptp);
*ptp = NULL;
}

View File

@ -57,6 +57,8 @@ void test_pkg_read_archive_files() {
}
TEST_CHECK(pkg->compression = 14);
vieter_package_free(&pkg);
}
void test_pkg_read_archive_desc() {