]> git.ipfire.org Git - thirdparty/git.git/commit - builtin/rebase.c
rebase: use child_process_clear() to clean
authorJeff King <peff@peff.net>
Fri, 22 Mar 2024 10:35:02 +0000 (06:35 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 22 Mar 2024 17:21:35 +0000 (10:21 -0700)
commit647e870a08e31984f5f42703f3618ff378a72932
tree4b3218c58d1d789c999ca2c9eba63a718402c99a
parent0d1bd1dfb37ef25e1911777c94129fc769ffec38
rebase: use child_process_clear() to clean

In the run_am() function, we set up a child_process struct to run
"git-am", allocating memory for its args and env strvecs. These are
normally cleaned up when we call run_command(). But if we encounter
certain errors, we exit the function early and try to clean up ourselves
by clearing the am.args field. This leaks the "env" strvec.

We should use child_process_clear() instead, which covers both. And more
importantly, it future proofs us against the struct ever growing more
allocated fields.

These are unlikely errors to happen in practice, so they don't actually
trigger the leak sanitizer in the tests. But we can add a new test which
does exercise one of the paths (and fails SANITIZE=leak without this
patch).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/rebase.c
t/t3438-rebase-broken-files.sh