for completeness free all arrays before exit
so valgrind does not report any leakscute-signatures
parent
6b140ec5c7
commit
c4295e9cf8
|
@ -258,6 +258,7 @@ void apk_db_dir_unref(struct apk_database *db, struct apk_db_dir *dir, int rmdir
|
|||
{
|
||||
if (--dir->refs > 0) return;
|
||||
db->installed.stats.dirs--;
|
||||
apk_protected_path_array_free(&dir->protected_paths);
|
||||
if (dir->namelen == 0) return;
|
||||
|
||||
if (rmdir_mode == APK_DIR_REMOVE && !(apk_flags & APK_SIMULATE))
|
||||
|
|
|
@ -940,6 +940,7 @@ void apk_pkg_free(struct apk_package *pkg)
|
|||
|
||||
apk_pkg_uninstall(NULL, pkg);
|
||||
apk_dependency_array_free(&pkg->depends);
|
||||
apk_dependency_array_free(&pkg->provides);
|
||||
apk_dependency_array_free(&pkg->install_if);
|
||||
if (pkg->url)
|
||||
free(pkg->url);
|
||||
|
|
Loading…
Reference in New Issue