зеркало из https://github.com/microsoft/git.git
http-push: don't check return value of lookup_unknown_object()
This function always returns a reference to an object, creating one if needed, so remove the unnecessary NULL check. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
c3808ca698
Коммит
e94eac49e6
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче