Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-03-24 23:07:35 +0300
committerJunio C Hamano <gitster@pobox.com>2017-03-24 23:07:35 +0300
commitbbde4a987d61dfa6f81a3231e7f92fce8803e1fc (patch)
treeda30c849614ccae5f380ce0acf934d1ab546e05d
parent0efeb5ca12f070ca3a8cec48761af863e9a7f6fe (diff)
parente94eac49e6edb1ef37796e11bf52a7cb301645e8 (diff)
Merge branch 'rs/http-push-cleanup'
Code clean-up. * rs/http-push-cleanup: http-push: don't check return value of lookup_unknown_object()
-rw-r--r--http-push.c8
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;