diff options
author | Jonas Fonseca <fonseca@diku.dk> | 2006-09-01 00:32:39 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-31 16:24:39 -0700 |
commit | 2d7320d0b09d7a9aab4e5dbc5458f37bfb6ce9f5 (patch) | |
tree | 4fac98b5cb3155365498f5750f9550be977660ed /sha1_file.c | |
parent | ef1186228d39af29c109785fa752e3866c79a6b3 (diff) | |
download | git-2d7320d0b09d7a9aab4e5dbc5458f37bfb6ce9f5.tar.gz git-2d7320d0b09d7a9aab4e5dbc5458f37bfb6ce9f5.tar.xz |
Use xmalloc instead of malloc
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c index 46272b591..af2bf72ba 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -1756,7 +1756,7 @@ int read_pipe(int fd, char** return_buf, unsigned long* return_size) int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object) { unsigned long size = 4096; - char *buf = malloc(size); + char *buf = xmalloc(size); int ret; unsigned char hdr[50]; int hdrlen; |