From f95c697a44c321dd1d370620515aa71a71a4ad5b Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Wed, 4 Nov 2009 11:33:29 +0000 Subject: [PATCH 1/1] hivex: Check unchecked calloc (Jim Meyering). --- hivex/hivex.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hivex/hivex.c b/hivex/hivex.c index b522ccf..4fa3b30 100644 --- a/hivex/hivex.c +++ b/hivex/hivex.c @@ -271,6 +271,8 @@ hivex_open (const char *filename, int flags) } h->bitmap = calloc (1 + h->size / 32, 1); + if (h->bitmap == NULL) + goto error; #if 0 /* Doesn't work. */ /* Header checksum. */ -- 1.8.3.1