On Thu, Jan 30, 2020 at 11:19:55PM +0100, Martin Ågren wrote: > On Fri, 24 Jan 2020 at 04:40, <emilyshaffer@xxxxxxxxxx> wrote: > > +static void get_system_info(struct strbuf *sys_info) > > +{ > > + struct strbuf version_info = STRBUF_INIT; > > + > > + /* get git version from native cmd */ > > + strbuf_addstr(sys_info, "git version:\n"); > > + get_version_info(&version_info, 1); > > + strbuf_addbuf(sys_info, &version_info); > > + strbuf_complete_line(sys_info); > > This leaks version_info. So it does. I think the easiest thing is to drop the 'strbuf_reset()' at the top of help.c:get_version_info(), and just pass in sys_info from bugreport.c. - Emily