Fix silly issue with not setting fd count in debug shell

This commit is contained in:
Kevin Lange 2014-05-08 20:24:26 -07:00
parent e37fdd2b4b
commit 56592bb600

View File

@ -605,6 +605,7 @@ static void debug_shell_run(void * data, char * name) {
current_process->fds->entries[0] = tty;
current_process->fds->entries[1] = tty;
current_process->fds->entries[2] = tty;
current_process->fds->length = 3;
debug_shell_actual(tty, name);
}