diff options
author | René Scharfe <l.s.r@web.de> | 2017-01-29 14:09:46 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-01-31 00:08:58 +0100 |
commit | 4432dd6b5bb5ad33bb20966807c0fda4b0e3cb65 (patch) | |
tree | 2870e700cdfab223b15342a7fe7a37bbc9916de3 /builtin/receive-pack.c | |
parent | Almost ready for 2.11.1 (diff) | |
download | git-4432dd6b5bb5ad33bb20966807c0fda4b0e3cb65.tar.xz git-4432dd6b5bb5ad33bb20966807c0fda4b0e3cb65.zip |
receive-pack: call string_list_clear() unconditionally
string_list_clear() handles empty lists just fine, so remove the
redundant check.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | builtin/receive-pack.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c index e6b3879a5b..a03da29e2c 100644 --- a/builtin/receive-pack.c +++ b/builtin/receive-pack.c @@ -1942,8 +1942,7 @@ int cmd_receive_pack(int argc, const char **argv, const char *prefix) run_receive_hook(commands, "post-receive", 1, &push_options); run_update_post_hook(commands); - if (push_options.nr) - string_list_clear(&push_options, 0); + string_list_clear(&push_options, 0); if (auto_gc) { const char *argv_gc_auto[] = { "gc", "--auto", "--quiet", NULL, |