From: Alan Cox Date: Thu, 17 Mar 2016 13:25:01 +0000 (+0000) Subject: init: Remove unsafe memory freeup X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=b499f2c24c9e105083524d216c85beb13e3a7a58;p=FUZIX.git init: Remove unsafe memory freeup As per Brett's note --- diff --git a/Applications/util/init.c b/Applications/util/init.c index d233074e..7751a865 100644 --- a/Applications/util/init.c +++ b/Applications/util/init.c @@ -664,9 +664,6 @@ static pid_t getty(const char *ttyname, const char *id) setpgrp(); setpgid(0,0); - /* Throw all the init working spacd we inherited */ - brk_warn(membase); - fdtty = open(ttyname, O_RDWR); if (fdtty < 0) return -1;