summaryrefslogtreecommitdiff
path: root/builtin/index-pack.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-05-02 17:06:00 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-05-02 17:06:04 (GMT)
commit2b0a58d164b0642be3eeb476fecd28114445cdd5 (patch)
tree2759549fcdd5d3ce4c9776f67937b4b75c07070f /builtin/index-pack.c
parentd516b2db0af2221bd6b13e7347abdcb5830b2829 (diff)
parentafe8a9070bc62db9cfde1e30147178c40d391d93 (diff)
downloadgit-2b0a58d164b0642be3eeb476fecd28114445cdd5.zip
git-2b0a58d164b0642be3eeb476fecd28114445cdd5.tar.gz
git-2b0a58d164b0642be3eeb476fecd28114445cdd5.tar.bz2
Merge branch 'ep/maint-equals-null-cocci' for maint-2.35
* ep/maint-equals-null-cocci: tree-wide: apply equals-null.cocci contrib/coccinnelle: add equals-null.cocci
Diffstat (limited to 'builtin/index-pack.c')
-rw-r--r--builtin/index-pack.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/index-pack.c b/builtin/index-pack.c
index 3c2e6ae..ec59e8d 100644
--- a/builtin/index-pack.c
+++ b/builtin/index-pack.c
@@ -1935,11 +1935,11 @@ int cmd_index_pack(int argc, const char **argv, const char *prefix)
free(objects);
strbuf_release(&index_name_buf);
strbuf_release(&rev_index_name_buf);
- if (pack_name == NULL)
+ if (!pack_name)
free((void *) curr_pack);
- if (index_name == NULL)
+ if (!index_name)
free((void *) curr_index);
- if (rev_index_name == NULL)
+ if (!rev_index_name)
free((void *) curr_rev_index);
/*