Browse Source

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>
maint
SZEDER Gábor 5 years ago committed by Junio C Hamano
parent
commit
bf43abc6e6
  1. 2
      builtin/name-rev.c

2
builtin/name-rev.c

@ -102,7 +102,7 @@ static void name_rev(struct commit *commit, @@ -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)) {

Loading…
Cancel
Save