Revision 27ed6ccc12a331a1e6014f2fe101a2c551167e9e authored by Jeff King on 27 August 2020, 05:25:04 UTC, committed by Junio C Hamano on 27 August 2020, 15:30:17 UTC
We allocate a child_env strvec but never free its memory. Instead, let's
just use the strvec that our child_process struct provides, which is
cleaned up automatically when we run the command.

And while we're moving the initialization of the child_process around,
let's switch it to use the official init function (zero-initializing it
works OK, since strvec is happy enough with that, but it sets a bad
example).

Signed-off-by: Jeff King <peff@peff.net>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 47ae905
History
File Mode Size
bitmap.c -rw-r--r-- 4.4 KB
ewah_bitmap.c -rw-r--r-- 10.8 KB
ewah_io.c -rw-r--r-- 3.8 KB
ewah_rlw.c -rw-r--r-- 2.6 KB
ewok.h -rw-r--r-- 5.7 KB
ewok_rlw.h -rw-r--r-- 3.0 KB

back to top