Fix off-by-one error

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@486 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2002-12-09 00:20:55 +00:00
parent e67a8f5058
commit 9ce3be1d44

View File

@ -474,5 +474,5 @@ void AllocateHMASpace (size_t lowbuffer, size_t highbuffer)
} }
bp = b_next(bp); bp = b_next(bp);
} }
while (n--); while (--n);
} }