Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 25471
b: refs/heads/master
c: f53389d
h: refs/heads/master
i:
  25469: c56c3dc
  25467: 27c09c5
  25463: b26ec3b
  25455: 293dcbb
  25439: 8813339
  25407: fad0db9
  25343: 67c423f
v: v3
  • Loading branch information
Paolo 'Blaisorblade' Giarrusso authored and Linus Torvalds committed Apr 11, 2006
1 parent ac8ff0a commit 7f3839e
Show file tree
Hide file tree
Showing 3 changed files with 3 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: 5b0e94787f1b8fdcd370fc6303579d171b941080
refs/heads/master: f53389d8af6a73034e40eace6034622c03ed707b
2 changes: 1 addition & 1 deletion trunk/arch/um/sys-i386/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ int copy_sc_to_user_tt(struct sigcontext *to, struct _fpstate __user *fp,
* delivery. The sp passed in is the original, and this needs
* to be restored, so we stick it in separately.
*/
err |= copy_to_user(&SC_SP(to), sp, sizeof(sp));
err |= copy_to_user(&SC_SP(to), &sp, sizeof(sp));

if(from_fp != NULL){
err |= copy_to_user(&to->fpstate, &to_fp, sizeof(to->fpstate));
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/um/sys-x86_64/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ int copy_sc_to_user_tt(struct sigcontext *to, struct _fpstate *fp,
* delivery. The sp passed in is the original, and this needs
* to be restored, so we stick it in separately.
*/
err |= copy_to_user(&SC_SP(to), sp, sizeof(sp));
err |= copy_to_user(&SC_SP(to), &sp, sizeof(sp));

if(from_fp != NULL){
err |= copy_to_user(&to->fpstate, &to_fp, sizeof(to->fpstate));
Expand Down

0 comments on commit 7f3839e

Please sign in to comment.