aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2021-03-21 12:40:41 +0100
committerMarvin Borner2021-03-21 12:46:08 +0100
commit09c3bdb186868204cb03d457244e05e12eb685d6 (patch)
tree7bf59794173d700df08ad303acd6c5a49193a9eb /apps
parent68a0ad7f21ba07b93cd63613996e27afd8780f9c (diff)
Hardened syscalls
Diffstat (limited to 'apps')
-rw-r--r--apps/wm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/wm.c b/apps/wm.c
index 10f13d3..531559f 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -84,8 +84,8 @@ static struct window *window_new(struct client client, const char *name, struct
if ((flags & WF_NO_FB) != 0) {
win->ctx.fb = NULL;
} else {
- win->shid = shalloc(size.y * win->ctx.pitch);
- win->ctx.fb = shaccess(win->shid);
+ assert(shalloc(win->ctx.bytes, &win->shid) == EOK);
+ assert(shaccess(win->shid, (u32 *)&win->ctx.fb, &win->ctx.bytes) == EOK);
}
win->client = client;
win->flags = flags;