1
0
mirror of https://github.com/git/git synced 2024-07-05 00:58:49 +00:00

name-rev: use sizeof(*ptr) instead of sizeof(type) in allocation

Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
SZEDER Gábor 2019-11-12 11:38:13 +01:00 committed by Junio C Hamano
parent e0c4da6f2a
commit bf43abc6e6

View File

@ -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)) {