From b499f2c24c9e105083524d216c85beb13e3a7a58 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Thu, 17 Mar 2016 13:25:01 +0000 Subject: [PATCH] init: Remove unsafe memory freeup As per Brett's note --- Applications/util/init.c | 3 --- 1 file changed, 3 deletions(-) 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; -- 2.34.1