commit 32c1c85ecd4b289f5f464b22deb113c89e81836f
parent f3e2c11c83bb2a74a6af12552731fed3a83c5d49
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date: Tue, 22 Nov 2022 17:26:41 +0100
os9: Return current heap in alloc()
The pointer returned by alloc() must be the pointer before the
operation and not the pointer after the allocation.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/os9/alloc.c b/src/os9/alloc.c
@@ -95,7 +95,7 @@ alloc(size_t size)
bp = NULL;
errno = ENOMEM;
} else {
- bp = heap + n;
+ bp = (char *) heap + used;
used += size;
}
unlock(&m);