diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-05-02 09:50:37 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-05-02 09:50:37 -0700 |
commit | afe8a9070bc62db9cfde1e30147178c40d391d93 (patch) | |
tree | d237acac7915db89829db7da1d0405f2e595a68b /dir.c | |
parent | 7a618493facb79639231f797e492fab51fac2ba4 (diff) | |
download | git-afe8a9070bc62db9cfde1e30147178c40d391d93.tar.gz |
tree-wide: apply equals-null.cocci
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.c')
-rw-r--r-- | dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3049,7 +3049,7 @@ char *git_url_basename(const char *repo, int is_bundle, int is_bare) * Skip scheme. */ start = strstr(repo, "://"); - if (start == NULL) + if (!start) start = repo; else start += 3; |