diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-03-28 13:52:26 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-28 13:52:26 -0700 |
commit | 310b94528c9a66f0293b8fd7dca4386e579902de (patch) | |
tree | bd3e4eec97b59337c84368bc22cf52f2ea35dc8a | |
parent | e3c551dd7ba9a3a01da7d9d34cb1cde44dd6f2a3 (diff) | |
parent | e94eac49e6edb1ef37796e11bf52a7cb301645e8 (diff) | |
download | git-310b94528c9a66f0293b8fd7dca4386e579902de.tar.gz |
Merge branch 'rs/http-push-cleanup' into maint
Code clean-up.
* rs/http-push-cleanup:
http-push: don't check return value of lookup_unknown_object()
-rw-r--r-- | http-push.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/http-push.c b/http-push.c index 704b1c837c..f0e3108f71 100644 --- a/http-push.c +++ b/http-push.c @@ -1431,11 +1431,9 @@ static void one_remote_ref(const char *refname) */ if (repo->can_update_info_refs && !has_object_file(&ref->old_oid)) { obj = lookup_unknown_object(ref->old_oid.hash); - if (obj) { - fprintf(stderr, " fetch %s for %s\n", - oid_to_hex(&ref->old_oid), refname); - add_fetch_request(obj); - } + fprintf(stderr, " fetch %s for %s\n", + oid_to_hex(&ref->old_oid), refname); + add_fetch_request(obj); } ref->next = remote_refs; |