[PATCH v2 05/13] name-rev: use sizeof(*ptr) instead of sizeof(type) in allocation
From: SZEDER Gábor <hidden>
Date: 2019-11-12 10:38:41
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: SZEDER Gábor <hidden>
Date: 2019-11-12 10:38:41
Subsystem:
the rest · Maintainer:
Linus Torvalds
Signed-off-by: SZEDER Gábor <redacted> --- builtin/name-rev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builtin/name-rev.c b/builtin/name-rev.c
index e40f51c2b4..7e003c2702 100644
--- a/builtin/name-rev.c
+++ b/builtin/name-rev.c@@ -102,7 +102,7 @@ static void name_rev(struct commit *commit, } if (name == NULL) { - name = xmalloc(sizeof(rev_name)); + name = xmalloc(sizeof(*name)); set_commit_rev_name(commit, name); goto copy_data; } else if (is_better_name(name, taggerdate, distance, from_tag)) {
--
2.24.0.388.gde53c094ea