mirror of
https://github.com/git/git
synced 2024-11-05 01:58:18 +00:00
fetch-pack, send-pack: clean up shallow oid array
When we call get_remote_heads() for protocol v0, that may populate the "shallow" oid_array, which must be cleaned up to avoid a leak at the program exit. The same problem exists for both fetch-pack and send-pack, but not for the usual transport.c code paths, since we already do this cleanup in disconnect_git(). Fixing this lets us mark t5542 as leak-free for the send-pack side, but fetch-pack will need some more fixes before we can do the same for t5539. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
0c23f1a9e4
commit
c800963578
3 changed files with 3 additions and 0 deletions
|
@ -294,5 +294,6 @@ int cmd_fetch_pack(int argc,
|
|||
free_refs(fetched_refs);
|
||||
free_refs(remote_refs);
|
||||
list_objects_filter_release(&args.filter_options);
|
||||
oid_array_clear(&shallow);
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -343,5 +343,6 @@ int cmd_send_pack(int argc,
|
|||
free_refs(remote_refs);
|
||||
free_refs(local_refs);
|
||||
refspec_clear(&rs);
|
||||
oid_array_clear(&shallow);
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@ test_description='push from/to a shallow clone over http'
|
|||
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
||||
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./test-lib.sh
|
||||
. "$TEST_DIRECTORY"/lib-httpd.sh
|
||||
start_httpd
|
||||
|
|
Loading…
Reference in a new issue