From: Haritha D <harithamma.d@xxxxxxx> This PR has fixes to enable build on z/OS Signed-off-by: Harithamma D <harithamma.d@xxxxxxx> --- convert.c | 2 +- fetch-pack.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/convert.c b/convert.c index d3f204b4c29..7fe107710ec 100644 --- a/convert.c +++ b/convert.c @@ -1314,7 +1314,7 @@ static int git_path_check_ident(struct attr_check_item *check) static struct attr_check *check; static const char* get_platform(void) { - struct utsname uname_info; + struct utsname uname_info = {0}; char *result = NULL; if(!uname_info.sysname[0]) { diff --git a/fetch-pack.c b/fetch-pack.c index f40b90dfa65..c1f2e714f8e 100644 --- a/fetch-pack.c +++ b/fetch-pack.c @@ -1853,7 +1853,7 @@ static struct ref *do_fetch_pack_v2(struct fetch_pack_args *args, die("fsck failed"); if (negotiator) - negotiator->release(negotiator); + negotiator->release_negotiator(negotiator); oidset_clear(&common); return ref; -- gitgitgadget