]> git.ipfire.org Git - thirdparty/git.git/commit - commit-reach.c
commit-reach: fix memory and flag leaks
authorDerrick Stolee <dstolee@microsoft.com>
Fri, 21 Sep 2018 15:05:27 +0000 (08:05 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 21 Sep 2018 18:36:29 +0000 (11:36 -0700)
commit4067a64672f9db8ca38d5a2682a7cdba7938c18b
treee688a5d2c6e5ca5c7036fc193ac4f24e2106e1ab
parentb67f6b26e354813d8cd792dcb3eb1a1b60b98a08
commit-reach: fix memory and flag leaks

The can_all_from_reach_with_flag() method uses 'assign_flag' as a
value we can use to mark objects temporarily during our commit walk.
The intent is that these flags are removed from all objects before
returning. However, this is not the case.

The 'from' array could also contain objects that are not commits, and
we mark those objects with 'assign_flag'. Add a loop to the 'cleanup'
section that removes these markers.

Also, we forgot to free() the memory for 'list', so add that to the
'cleanup' section.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
commit-reach.c