commit 575a36a35100d06c05f81eb2ebd2ec2ed2edb60f
parent 90c0cbf4f1ea96e67116f5dbbc7f2d65de970bec
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date: Thu, 17 Nov 2022 10:37:12 +0100
os9: Remove default init in newmap()
Maps are a complex structure and they cannot be used
in this way.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/os9/proc.c b/src/os9/proc.c
@@ -297,7 +297,7 @@ newmap(Map *from)
if ((mp = alloc(sizeof(*mp))) == NULL)
return NULL;
- *mp = (from) ? *from : (Map) {0};
+ *mp = *from;
initref(&mp->ref);
mapseg(mp); /* FIXME: we have to duplicate the pages */