From 84a8b41f4d4c444385e0d7ef058a57af07f0c2e1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 6 Jan 2020 00:06:45 +0100 Subject: Usermode based allocating works a bit now *a bit* --- src/userspace/mlibc/stdio/readline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/userspace/mlibc/stdio/readline.c') diff --git a/src/userspace/mlibc/stdio/readline.c b/src/userspace/mlibc/stdio/readline.c index 8937702..68e8499 100644 --- a/src/userspace/mlibc/stdio/readline.c +++ b/src/userspace/mlibc/stdio/readline.c @@ -3,7 +3,7 @@ char *readline() { - char ret[256] = {'\0'}; + char *ret = malloc(256); char buf = 0; while (buf != '\n') { buf = getch(); -- cgit v1.2.3