fix bug in do_fork function

This commit is contained in:
chyyuu 2016-04-01 23:25:04 +08:00
parent 8d0dbae554
commit f8d953397b

View File

@ -484,7 +484,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
goto bad_fork_cleanup_kstack;
}
if (copy_mm(clone_flags, proc) != 0) {
goto bad_fork_cleanup_kstack;
goto bad_fork_cleanup_fs;
}
copy_thread(proc, stack, tf);