diff options
Diffstat (limited to 'http-walker.c')
-rw-r--r-- | http-walker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-walker.c b/http-walker.c index 1516c5eb29..d9d758ad95 100644 --- a/http-walker.c +++ b/http-walker.c @@ -405,7 +405,7 @@ static int http_fetch_pack(struct walker *walker, struct alt_base *repo, unsigne if (fetch_indices(walker, repo)) return -1; - target = find_sha1_pack(sha1, repo->packs); + target = repo->packs ? find_sha1_pack(sha1, repo->packs) : NULL; if (!target) return -1; |