Compare commits

...

1 Commits

Author SHA1 Message Date
Ariadne Conill 34c0a1559f libpkgconf: cache: free copied cache_table when clearing cache
ci/woodpecker/push/woodpecker Pipeline failed Details
2023-01-20 21:03:49 +00:00
1 changed files with 2 additions and 0 deletions

View File

@ -227,5 +227,7 @@ pkgconf_cache_free(pkgconf_client_t *client)
client->cache_table = NULL;
client->cache_count = 0;
free(cache_table);
PKGCONF_TRACE(client, "cleared package cache");
}