mirror of
https://github.com/git/git.git
synced 2024-11-28 04:23:30 +08:00
Merge branch 'rs/fmt-merge-msg-string-leak-fix'
Leakfix. * rs/fmt-merge-msg-string-leak-fix: fmt-merge-msg: avoid leaking strbuf in shortlog()
This commit is contained in:
commit
1f9ce78df0
@ -377,7 +377,8 @@ static void shortlog(const char *name,
|
||||
string_list_append(&subjects,
|
||||
oid_to_hex(&commit->object.oid));
|
||||
else
|
||||
string_list_append(&subjects, strbuf_detach(&sb, NULL));
|
||||
string_list_append_nodup(&subjects,
|
||||
strbuf_detach(&sb, NULL));
|
||||
}
|
||||
|
||||
if (opts->credit_people)
|
||||
|
Loading…
Reference in New Issue
Block a user