Browse Source

fix bug in do_fork function

main
chyyuu 8 years ago
parent
commit
f8d953397b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      labcodes_answer/lab8_result/kern/process/proc.c

+ 1
- 1
labcodes_answer/lab8_result/kern/process/proc.c 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);

Loading…
Cancel
Save