Avoid bug in VAX assembler. But i don't know what is happening.
This commit is contained in:
parent
9e61390e78
commit
f78cbc818f
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ unsigned size;
|
||||||
|
|
||||||
if ((p = bottom) == 0) {
|
if ((p = bottom) == 0) {
|
||||||
top = bottom = p = sbrk(sizeof(char *));
|
top = bottom = p = sbrk(sizeof(char *));
|
||||||
NEXT(top) = 0;
|
NEXT(p) = 0;
|
||||||
}
|
}
|
||||||
while ((next = NEXT(p)) != 0)
|
while ((next = NEXT(p)) != 0)
|
||||||
if ((vir_bytes) next & BUSY) /* already in use */
|
if ((vir_bytes) next & BUSY) /* already in use */
|
||||||
|
|
Loading…
Add table
Reference in a new issue