On 7/1/2026 2:40 AM, Jeff King wrote:
In prepare_revision_walk(), we convert the pruning pathspecs into
bloom-filter "keyvecs" via prepare_to_use_bloom_filter(). This allocates
memory which is then freed eventually by release_revisions(), via
release_revisions_bloom_keyvecs().
static void prepare_to_use_bloom_filter(struct rev_info *revs)
{
+ release_revisions_bloom_keyvecs(revs);
+
I continue to support the obviously-correct and simple solution to
these leaks.
Thanks,
-Stolee