From 8b5182bc84d40ed215e7000411fc027dac244af8 Mon Sep 17 00:00:00 2001
From: Brian Carrier <carrier@sleuthkit.org>
Date: Fri, 10 Jun 2016 14:33:23 -0400
Subject: [PATCH] made csize 32 bits to accomidate worse case exfat sizes

---
 tsk/fs/tsk_fatfs.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tsk/fs/tsk_fatfs.h b/tsk/fs/tsk_fatfs.h
index 8079e5747..aa0a58801 100644
--- a/tsk/fs/tsk_fatfs.h
+++ b/tsk/fs/tsk_fatfs.h
@@ -231,7 +231,7 @@ extern "C" {
 
         uint16_t ssize;         /* size of sectors in bytes */
         uint16_t ssize_sh;      /* power of 2 for size of sectors.  >> to divide by sector size.  << to multiply by sector size */
-        uint16_t csize;          /* size of clusters in sectors */
+        uint32_t csize;          /* size of clusters in sectors */
         uint8_t numfat;         /* number of fat tables */
         uint32_t sectperfat;    /* sectors per fat table */
         uint16_t numroot;       /* number of 32-byte dentries in root dir */
-- 
GitLab