summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/src/libdraw/newwindow.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/sys/src/libdraw/newwindow.c b/sys/src/libdraw/newwindow.c
index 88784adf5..7b385a322 100644
--- a/sys/src/libdraw/newwindow.c
+++ b/sys/src/libdraw/newwindow.c
@@ -14,14 +14,19 @@ newwindow(char *str)
if(wsys == nil)
return -1;
fd = open(wsys, ORDWR);
- free(wsys);
- if(fd < 0)
+ if(fd < 0){
+ free(wsys);
return -1;
+ }
rfork(RFNAMEG);
+ unmount(wsys, "/dev"); /* drop reference to old window */
+ free(wsys);
if(str)
snprint(buf, sizeof buf, "new %s", str);
else
strcpy(buf, "new");
- return mount(fd, -1, "/dev", MBEFORE, buf);
+ if(mount(fd, -1, "/mnt/wsys", MREPL, buf) < 0)
+ return mount(fd, -1, "/dev", MBEFORE, buf);
+ return bind("/mnt/wsys", "/dev", MBEFORE);
}