ref: ec68e49e1c94111520f7a854153b2ef12be717ac
parent: 10f4210b2099d153ffc8ca161c3938456d95a914
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Tue Oct 4 19:14:54 EDT 2022
riow: fix uninitialized field
--- a/sys/src/cmd/riow.c
+++ b/sys/src/cmd/riow.c
@@ -88,6 +88,7 @@
w->r.max.y = atoi(t[3]);
w->vd = -1;
w->flags = 0;
+ w->stickyforced = 0;
/* move over the current state of the window */
for(k = 0, seen = 0; k < wsn; k++){
--
⑨