Merge branch 'maint-1.6.0' into maint

* maint-1.6.0:
  avoid 31-bit truncation in write_loose_object
This commit is contained in:
Junio C Hamano 2009-01-28 23:41:28 -08:00
Родитель 02322e1619 915308b187
Коммит 8561b522d7
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -2337,7 +2337,8 @@ static int create_tmpfile(char *buffer, size_t bufsiz, const char *filename)
static int write_loose_object(const unsigned char *sha1, char *hdr, int hdrlen,
void *buf, unsigned long len, time_t mtime)
{
int fd, size, ret;
int fd, ret;
size_t size;
unsigned char *compressed;
z_stream stream;
char *filename;