Browse Source

Merge branch 'maint-1.6.0' into maint

* maint-1.6.0:
  avoid 31-bit truncation in write_loose_object
maint
Junio C Hamano 16 years ago
parent
commit
8561b522d7
  1. 3
      sha1_file.c

3
sha1_file.c

@ -2337,7 +2337,8 @@ static int create_tmpfile(char *buffer, size_t bufsiz, const char *filename) @@ -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;

Loading…
Cancel
Save