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 /path.c | |
| parent | contrib/coccinnelle: add equals-null.cocci (diff) | |
| download | git-afe8a9070bc62db9cfde1e30147178c40d391d93.tar.gz git-afe8a9070bc62db9cfde1e30147178c40d391d93.zip | |
tree-wide: apply equals-null.cocci
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'path.c')
| -rw-r--r-- | path.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -733,7 +733,7 @@ char *interpolate_path(const char *path, int real_home) struct strbuf user_path = STRBUF_INIT; const char *to_copy = path; - if (path == NULL) + if (!path) goto return_null; if (skip_prefix(path, "%(prefix)/", &path)) |
