mirror of
git://git.9front.org/plan9front/plan9front
synced 2025-01-12 11:10:06 +00:00
acid leak: remove arena pointer a < 0xff000000 check
in the kernel, area can lie above 0xff000000
This commit is contained in:
parent
3f9867c4ce
commit
3e8764aef1
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ dumppool(p, sum)
|
|||
a = p.arenalist;
|
||||
|
||||
print("A: ", p.arenalist\X, "\n");
|
||||
while a != 0 && a < 0xff000000 do {
|
||||
while a != 0 do {
|
||||
complex Arena a;
|
||||
dumparena(a, sum);
|
||||
a = a.down;
|
||||
|
|
Loading…
Reference in a new issue