diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-10-07 16:27:55 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-07 16:27:55 +0900 |
commit | 5261fefa4aa7e9c054e1bd664a138d49a3e26d79 (patch) | |
tree | a56d45f14a526fa1bf1da76aa447ed86e1c85a3f /builtin/name-rev.c | |
parent | Merge branch 'rb/compat-poll-fix' (diff) | |
parent | builtin/: add UNLEAKs (diff) | |
download | tgif-5261fefa4aa7e9c054e1bd664a138d49a3e26d79.tar.xz |
Merge branch 'ma/builtin-unleak'
Many variables that points at a region of memory that will live
throughout the life of the program have been marked with UNLEAK
marker to help the leak checkers concentrate on real leaks..
* ma/builtin-unleak:
builtin/: add UNLEAKs
Diffstat (limited to 'builtin/name-rev.c')
-rw-r--r-- | builtin/name-rev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/name-rev.c b/builtin/name-rev.c index 598da6c8bc..9e088ebd11 100644 --- a/builtin/name-rev.c +++ b/builtin/name-rev.c @@ -494,5 +494,6 @@ int cmd_name_rev(int argc, const char **argv, const char *prefix) always, allow_undefined, data.name_only); } + UNLEAK(revs); return 0; } |