read-cache.c: use xcalloc() not calloc()
authorYakov Lerner <iler.ml@gmail.com>
Tue, 9 May 2006 16:14:00 +0000 (16:14 +0000)
committerJunio C Hamano <junkio@cox.net>
Tue, 9 May 2006 13:28:59 +0000 (06:28 -0700)
Elsewhere we use xcalloc(); we should consistently do so.

Signed-off-by: Yakov Lerner <iler.ml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
read-cache.c

index f97f92d..a917ab0 100644 (file)
@@ -552,7 +552,7 @@ int read_cache(void)
 
        active_nr = ntohl(hdr->hdr_entries);
        active_alloc = alloc_nr(active_nr);
-       active_cache = calloc(active_alloc, sizeof(struct cache_entry *));
+       active_cache = xcalloc(active_alloc, sizeof(struct cache_entry *));
 
        offset = sizeof(*hdr);
        for (i = 0; i < active_nr; i++) {