diff options
| author | René Scharfe <l.s.r@web.de> | 2023-01-01 22:16:48 +0100 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-01-09 13:28:36 +0900 |
| commit | 6e578410960d9ceb35ec98ad4b6fc711f1a9c85c (patch) | |
| tree | eda5b7fabcc2394e6b9b3f021d8e03a0833273fe /compat/mingw.c | |
| parent | add DUP_ARRAY (diff) | |
| download | git-6e578410960d9ceb35ec98ad4b6fc711f1a9c85c.tar.gz git-6e578410960d9ceb35ec98ad4b6fc711f1a9c85c.zip | |
use DUP_ARRAY
Add a semantic patch for replace ALLOC_ARRAY+COPY_ARRAY with DUP_ARRAY
to reduce code duplication and apply its results.
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat/mingw.c')
| -rw-r--r-- | compat/mingw.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compat/mingw.c b/compat/mingw.c index e131eb9b07..cd8195ab11 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -1396,8 +1396,7 @@ static wchar_t *make_environment_block(char **deltaenv) p += s; } - ALLOC_ARRAY(result, size); - COPY_ARRAY(result, wenv, size); + DUP_ARRAY(result, wenv, size); FreeEnvironmentStringsW(wenv); return result; } |
