Merge branch 'rj/ref-filter-get-head-description-leakfix'

Leakfix.

* rj/ref-filter-get-head-description-leakfix:
  ref-filter.c: fix a leak in get_head_description
maint
Junio C Hamano 2022-10-10 10:08:42 -07:00
commit 83b2b47850
1 changed files with 2 additions and 0 deletions

View File

@ -1722,6 +1722,8 @@ char *get_head_description(void)
} else
strbuf_addstr(&desc, _("(no branch)"));

wt_status_state_free_buffers(&state);

return strbuf_detach(&desc, NULL);
}