diff options
| author | Junio C Hamano <gitster@pobox.com> | 2015-02-17 10:15:27 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2015-02-17 10:15:27 -0800 |
| commit | f6b50a8bf4dcc0e0e67698d365640904ac8522b3 (patch) | |
| tree | c1766efff439ce4f48a62bf5b3ac5ce5dd949bfb | |
| parent | Merge branch 'jc/diff-format-doc' (diff) | |
| parent | do not check truth value of flex arrays (diff) | |
| download | git-f6b50a8bf4dcc0e0e67698d365640904ac8522b3.tar.gz git-f6b50a8bf4dcc0e0e67698d365640904ac8522b3.zip | |
Merge branch 'jk/remote-curl-an-array-in-struct-cannot-be-null'
Fix a misspelled conditional that is always true.
* jk/remote-curl-an-array-in-struct-cannot-be-null:
do not check truth value of flex arrays
| -rw-r--r-- | remote-curl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote-curl.c b/remote-curl.c index dd63bc27ab..515ac9b411 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -760,7 +760,7 @@ static int fetch_git(struct discovery *heads, for (i = 0; i < nr_heads; i++) { struct ref *ref = to_fetch[i]; - if (!ref->name || !*ref->name) + if (!*ref->name) die("cannot fetch by sha1 over smart http"); packet_buf_write(&preamble, "%s %s\n", sha1_to_hex(ref->old_sha1), ref->name); |
