From ac8ee450dbe65990378ca9c13094b7187ae70b0d Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Fri, 15 Jan 2010 12:41:34 +0000 Subject: [PATCH] hivex: Reenable checksum calculations, but don't check result. --- hivex/hivex.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hivex/hivex.c b/hivex/hivex.c index 36c6b0e..546ef18 100644 --- a/hivex/hivex.c +++ b/hivex/hivex.c @@ -283,15 +283,16 @@ hivex_open (const char *filename, int flags) if (h->bitmap == NULL) goto error; -#if 0 /* Doesn't work. */ /* Header checksum. */ - uint32_t *daddr = h->addr; + uint32_t *daddr = (uint32_t *) h->addr; size_t i; uint32_t sum = 0; for (i = 0; i < 0x1fc / 4; ++i) { - sum += le32toh (*daddr); + sum ^= le32toh (*daddr); daddr++; } + +#if 0 /* Doesn't work. */ if (sum != le32toh (h->hdr->csum)) { fprintf (stderr, "hivex: %s: bad checksum in hive header\n", filename); errno = EINVAL; -- 1.8.3.1