diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-09-30 13:19:30 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-09-30 13:19:30 +0900 |
commit | d8ce144e11fef0606a531a5a9c34c2a8ca09e155 (patch) | |
tree | 92a8566d6fc7eabd26057b1ad6ae355098b9060f /t/helper/test-read-cache.c | |
parent | Merge branch 'sg/git-test-boolean' (diff) | |
parent | pack-objects: drop packlist index_pos optimization (diff) | |
download | tgif-d8ce144e11fef0606a531a5a9c34c2a8ca09e155.tar.xz |
Merge branch 'jk/misc-uninitialized-fixes'
Various fixes to codepaths gcc 9 had trouble following dataflow.
* jk/misc-uninitialized-fixes:
pack-objects: drop packlist index_pos optimization
test-read-cache: drop namelen variable
diff-delta: set size out-parameter to 0 for NULL delta
bulk-checkin: zero-initialize hashfile_checkpoint
pack-objects: use object_id in packlist_alloc()
git-am: handle missing "author" when parsing commit
Diffstat (limited to 't/helper/test-read-cache.c')
-rw-r--r-- | t/helper/test-read-cache.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/t/helper/test-read-cache.c b/t/helper/test-read-cache.c index 7e79b555de..244977a29b 100644 --- a/t/helper/test-read-cache.c +++ b/t/helper/test-read-cache.c @@ -4,11 +4,10 @@ int cmd__read_cache(int argc, const char **argv) { - int i, cnt = 1, namelen; + int i, cnt = 1; const char *name = NULL; if (argc > 1 && skip_prefix(argv[1], "--print-and-refresh=", &name)) { - namelen = strlen(name); argc--; argv++; } @@ -24,7 +23,7 @@ int cmd__read_cache(int argc, const char **argv) refresh_index(&the_index, REFRESH_QUIET, NULL, NULL, NULL); - pos = index_name_pos(&the_index, name, namelen); + pos = index_name_pos(&the_index, name, strlen(name)); if (pos < 0) die("%s not in index", name); printf("%s is%s up to date\n", name, |