On 04/06/2017 10:55 AM, Johannes Schindelin wrote: > Hi Martin, > > On Thu, 6 Apr 2017, Martin Liška wrote: > >> Following patch fixes issues that can be seen with -fsanitize=address on >> GCC 7. > > Good catch. Yep, actually it was me who wrote the new use-after-scope support in GCC 7. And I was bit pessimistic about real examples of such errors, but one popped up very soon. > > However, it may make more sense to switch to using the "args" field > instead of the "argv" field: it is of type "struct argv_array" and is > released automagically by finish_command(). > > In other words, you would use something like > > @@ -600,7 +601,8 @@ static struct cmd2process > *start_multi_file_filter(struct hashmap *hashmap, cons > process = &entry->process; > > child_process_init(process); > - process->argv = argv; > + argv_array_push(&process->args, cmd); > > instead, making even for a nice LOC reduction. Done that way, survives tests. Martin > > Ciao, > Johannes >
>From 4e80f9bddff3c29fefb3628e0e920ca265d55e65 Mon Sep 17 00:00:00 2001 From: marxin <mliska@xxxxxxx> Date: Thu, 6 Apr 2017 11:40:24 +0200 Subject: [PATCH 2/2] Fix stack-use-after-scope error reported by ASAN by GCC 7. The use-after-scope is triggered here: READ of size 8 at 0x7ffc4f674e20 thread T0 #0 0x6f0b69 in finish_command /home/marxin/Programming/git/run-command.c:570 #1 0x5b6101 in kill_multi_file_filter /home/marxin/Programming/git/convert.c:570 #2 0x5b798a in kill_multi_file_filter /home/marxin/Programming/git/convert.c:770 --- convert.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/convert.c b/convert.c index 8d652bf27..73eb28eb8 100644 --- a/convert.c +++ b/convert.c @@ -589,7 +589,6 @@ static struct cmd2process *start_multi_file_filter(struct hashmap *hashmap, cons int err; struct cmd2process *entry; struct child_process *process; - const char *argv[] = { cmd, NULL }; struct string_list cap_list = STRING_LIST_INIT_NODUP; char *cap_buf; const char *cap_name; @@ -600,7 +599,7 @@ static struct cmd2process *start_multi_file_filter(struct hashmap *hashmap, cons process = &entry->process; child_process_init(process); - process->argv = argv; + argv_array_push(&process->args, cmd); process->use_shell = 1; process->in = -1; process->out = -1; -- 2.12.2