diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-05-02 18:50:37 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-05-02 18:50:37 +0200 |
commit | afe8a9070bc62db9cfde1e30147178c40d391d93 (patch) | |
tree | d237acac7915db89829db7da1d0405f2e595a68b /trailer.c | |
parent | contrib/coccinnelle: add equals-null.cocci (diff) | |
download | git-afe8a9070bc62db9cfde1e30147178c40d391d93.tar.xz git-afe8a9070bc62db9cfde1e30147178c40d391d93.zip |
tree-wide: apply equals-null.cocci
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'trailer.c')
-rw-r--r-- | trailer.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1029,7 +1029,7 @@ static FILE *create_in_place_tempfile(const char *file) /* Create temporary file in the same directory as the original */ tail = strrchr(file, '/'); - if (tail != NULL) + if (tail) strbuf_add(&filename_template, file, tail - file + 1); strbuf_addstr(&filename_template, "git-interpret-trailers-XXXXXX"); |