diff-delta: use realloc instead of xrealloc

Commit 83572c1a91 changed many
realloc to xrealloc. This change was made in diff-delta.c too,
although the code can handle an out of memory failure.

This patch reverts this change in diff-delta.c.

Signed-off-by: Martin Koegler <mkoegler@auto.tuwien.ac.at>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Martin Koegler 2007-05-29 21:08:35 +02:00 коммит произвёл Junio C Hamano
Родитель bd724be4be
Коммит b75c6c6de1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -388,7 +388,7 @@ create_delta(const struct delta_index *index,
outsize = max_size + MAX_OP_SIZE + 1;
if (max_size && outpos > max_size)
break;
out = xrealloc(out, outsize);
out = realloc(out, outsize);
if (!out) {
free(tmp);
return NULL;