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 /compat/mkdir.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 'compat/mkdir.c')
| -rw-r--r-- | compat/mkdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/mkdir.c b/compat/mkdir.c index 9e253fb72f..02aea3b32e 100644 --- a/compat/mkdir.c +++ b/compat/mkdir.c @@ -9,7 +9,7 @@ int compat_mkdir_wo_trailing_slash(const char *dir, mode_t mode) size_t len = strlen(dir); if (len && dir[len-1] == '/') { - if ((tmp_dir = strdup(dir)) == NULL) + if (!(tmp_dir = strdup(dir))) return -1; tmp_dir[len-1] = '\0'; } |
