Browse Source

Fix duplicate xmalloc in builtin-add

[jc: patch came without sign-off but it was too obvious and trivial.]

Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Liu Yubao 19 years ago committed by Junio C Hamano
parent
commit
d48ffdbb0b
  1. 1
      builtin-add.c

1
builtin-add.c

@ -70,7 +70,6 @@ static void fill_directory(struct dir_struct *dir, const char **pathspec) @@ -70,7 +70,6 @@ static void fill_directory(struct dir_struct *dir, const char **pathspec)
base = "";
if (baselen) {
char *common = xmalloc(baselen + 1);
common = xmalloc(baselen + 1);
memcpy(common, *pathspec, baselen);
common[baselen] = 0;
path = base = common;

Loading…
Cancel
Save