Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348925
b: refs/heads/master
c: b1e0318
h: refs/heads/master
i:
  348923: f858c25
v: v3
  • Loading branch information
Al Viro committed Jan 20, 2013
1 parent b6b7132 commit af4502d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 43b16820249396aea7eb57c747106e211e54bed5
refs/heads/master: b1e0318b8cd4bdbb0fbc48967b0350483ad9bd69
6 changes: 4 additions & 2 deletions trunk/kernel/fork.c
Original file line number Diff line number Diff line change
Expand Up @@ -1660,8 +1660,10 @@ SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
int, tls_val)
#endif
{
return do_fork(clone_flags, newsp, 0,
parent_tidptr, child_tidptr);
long ret = do_fork(clone_flags, newsp, 0, parent_tidptr, child_tidptr);
asmlinkage_protect(5, ret, clone_flags, newsp,
parent_tidptr, child_tidptr, tls_val);
return ret;
}
#endif

Expand Down

0 comments on commit af4502d

Please sign in to comment.