diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-09-18 04:54:48 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-19 03:22:31 -0700 |
commit | 27e13374bf1864eb8aea44cca3afd81eedb007aa (patch) | |
tree | 3feeec80a9e1c61877427411ee9cd7a63e83eef0 /remote.c | |
parent | f38395905b3d49bd68e0c01ca2310bf3387e1063 (diff) | |
download | git-27e13374bf1864eb8aea44cca3afd81eedb007aa.tar.gz |
builtin-fetch: Don't segfault on "fetch +foo"
If we are fetching something and were configured to do a forced
fetch and have no local ref to store the fetched object into we
cannot mark the local ref as having a forced update. Instead we
should just silently discard the + request.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'remote.c')
-rw-r--r-- | remote.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -875,8 +875,7 @@ int get_fetch_map(struct ref *remote_refs, refspec->src : "HEAD"); ref_map->peer_ref = get_local_ref(refspec->dst); - - if (refspec->force) + if (ref_map->peer_ref && refspec->force) ref_map->peer_ref->force = 1; } |