Skip to content

Commit

Permalink
[PARISC] Fix some compile problems in ptrace.c
Browse files Browse the repository at this point in the history
Fix some compile problems:
- ret wasn't being initialised in all code paths
- I'm pretty sure 'goto out' should have been 'goto out_tsk'

Signed-off-by: Matthew Wilcox <willy@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
  • Loading branch information
Matthew Wilcox authored and Kyle McMartin committed Nov 17, 2005
1 parent 92495c0 commit 83aceb5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions arch/parisc/kernel/ptrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)
* sigkill. perhaps it should be put in the status
* that it wants to exit.
*/
ret = 0;
DBG("sys_ptrace(KILL)\n");
if (child->exit_state == EXIT_ZOMBIE) /* already dead */
goto out_tsk;
Expand Down Expand Up @@ -344,11 +345,11 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)

case PTRACE_GETEVENTMSG:
ret = put_user(child->ptrace_message, (unsigned int __user *) data);
goto out;
goto out_tsk;

default:
ret = ptrace_request(child, request, addr, data);
goto out;
goto out_tsk;
}

out_wake_notrap:
Expand Down

0 comments on commit 83aceb5

Please sign in to comment.