diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-04-24 14:41:16 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-04-24 14:41:16 -0700 |
commit | 8939cfb5cf576679fe9b533718d5552f71748ee3 (patch) | |
tree | f2bd1e83d8f4ceb9bbd18b4cd6206c5ee8476db6 /builtin/revert.c | |
parent | 803090bef73bea178ea98a80d9a692530ac30d91 (diff) | |
parent | 5ba9b5e7e34459b9249816d5d9a868f08f2bfa7c (diff) | |
download | git-8939cfb5cf576679fe9b533718d5552f71748ee3.tar.gz |
Merge branch 'cc/fix-missing-va-end-in-revert'
By Christian Couder
* cc/fix-missing-va-end-in-revert:
revert: add missing va_end
Diffstat (limited to 'builtin/revert.c')
-rw-r--r-- | builtin/revert.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/revert.c b/builtin/revert.c index e6840f23dc..e4ed0239ca 100644 --- a/builtin/revert.c +++ b/builtin/revert.c @@ -86,6 +86,7 @@ static void verify_opt_mutually_compatible(const char *me, ...) break; } } + va_end(ap); if (opt1 && opt2) die(_("%s: %s cannot be used with %s"), me, opt1, opt2); |