From: Junio C Hamano Date: Tue, 28 Apr 2020 22:49:58 +0000 (-0700) Subject: Merge branch 'jk/config-use-size-t' X-Git-Tag: v2.27.0-rc0~95 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=342bc9e29fa462b127d9e1c02aa58349e58e56f0;p=thirdparty%2Fgit.git Merge branch 'jk/config-use-size-t' The config API made mixed uses of int and size_t types to represent length of various pieces of text it parsed, which has been updated to use the correct type (i.e. size_t) throughout. * jk/config-use-size-t: config: reject parsing of files over INT_MAX config: use size_t to store parsed variable baselen git_config_parse_key(): return baselen as size_t config: drop useless length variable in write_pair() parse_config_key(): return subsection len as size_t remote: drop auto-strlen behavior of make_branch() and make_rewrite() --- 342bc9e29fa462b127d9e1c02aa58349e58e56f0