diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2020-04-02 12:19:16 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-04-02 12:42:32 -0700 |
commit | db7ed7418b3702ab2b2df755764c3f452917a890 (patch) | |
tree | 888b61c185e11fff9b51fec37f8d4ff6c88a8dc1 /promisor-remote.c | |
parent | 274b9cc25322d9ee79aa8e6d4e86f0ffe5ced925 (diff) | |
download | git-db7ed7418b3702ab2b2df755764c3f452917a890.tar.gz |
promisor-remote: accept 0 as oid_nr in function
There are 3 callers to promisor_remote_get_direct() that first check if
the number of objects to be fetched is equal to 0. Fold that check into
promisor_remote_get_direct(), and in doing so, be explicit as to what
promisor_remote_get_direct() does if oid_nr is 0 (it returns 0, success,
immediately).
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'promisor-remote.c')
-rw-r--r-- | promisor-remote.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/promisor-remote.c b/promisor-remote.c index 9f338c945f..2155dfe657 100644 --- a/promisor-remote.c +++ b/promisor-remote.c @@ -241,6 +241,9 @@ int promisor_remote_get_direct(struct repository *repo, int to_free = 0; int res = -1; + if (oid_nr == 0) + return 0; + promisor_remote_init(); for (r = promisors; r; r = r->next) { |