mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-19 04:21:45 -07:00
Fix assertion in bootblockcheck.
Copied from Perforce Change: 186204 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
c92970302e
commit
68f9a3cd5c
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ Bool BootBlockCheck(BootBlock boot)
|
|||
CHECKL(boot->limit != NULL);
|
||||
CHECKL(boot->base <= boot->alloc);
|
||||
CHECKL(boot->alloc <= boot->limit);
|
||||
CHECKL(boot->alloc < boot->limit);
|
||||
CHECKL(boot->base < boot->limit);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue