From 207c84da21c2580f0a7f0b0fae60b3c2040538d0 Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Thu, 13 Feb 2020 22:38:25 -0500 Subject: [PATCH] Fixed size of freelist[] --- bobbi/sortdir.c#b00008 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobbi/sortdir.c#b00008 b/bobbi/sortdir.c#b00008 index 4633899..885b835 100644 --- a/bobbi/sortdir.c#b00008 +++ b/bobbi/sortdir.c#b00008 @@ -118,7 +118,7 @@ struct dirblk { }; /* Globals */ -static uchar freelist[8096]; /* 1 bit for each of 64K blocks */ +static uchar freelist[8192]; /* 1 bit for each of 64K blocks */ static uchar flloaded = 0; static struct block *blocks = NULL; static struct dirblk *dirs = NULL;