Thread (48 messages) flat view 48 messages, 5 authors, 2021-11-26

Re: [PATCH v2] pager: fix crash when pager program doesn't exist

From: Enzo Matsumiya <hidden>
Date: 2021-11-22 15:31:25
Subsystem: the rest · Maintainer: Linus Torvalds

Possibly related (same subject, not in this thread)

On 11/21, Junio C Hamano wrote:
It is rather common for us to reuse "struct child_process" in a code
path, e.g. builtin/worktree.c::add_worktree() prepares a single
instance of such a struct, sets cp.git_cmd to true, and runs either
"update-ref" or "symbolic-ref" to update "HEAD".  After successful
invocation of such a git subcommand, it then runs "git reset --hard",
with this piece of code:
Do you agree that at least NULLing .argv and .env could be part of
child_process_clear()?
diff --git a/run-command.c b/run-command.c
index a7bf81025afb..3839a26eff11 100644
--- a/run-command.c
+++ b/run-command.c
@@ -18,8 +18,9 @@ void child_process_init(struct child_process *child)
  void child_process_clear(struct child_process *child)
  {
         strvec_clear(&child->args);
+       child->argv = NULL;
         strvec_clear(&child->env_array);
+       child->env = NULL;
  }
With this change on main, all tests are successful.


Cheers,

Enzo
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help