Merge branch 'jk/connect-symref-info-leak-fix' into maint

Leakfix.

* jk/connect-symref-info-leak-fix:
  connect.c: fix leak in parse_one_symref_info()
This commit is contained in:
Junio C Hamano 2017-06-13 13:27:05 -07:00
commit 87d4fdd980

View File

@ -71,7 +71,7 @@ static void parse_one_symref_info(struct string_list *symref, const char *val, i
check_refname_format(target, REFNAME_ALLOW_ONELEVEL))
/* "symref=bogus:pair */
goto reject;
item = string_list_append(symref, sym);
item = string_list_append_nodup(symref, sym);
item->util = target;
return;
reject: