Commit 970f319a authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] signal warning and uninitialised variable fix

parent 3b66fbb7
...@@ -752,7 +752,7 @@ static int send_signal(int sig, struct siginfo *info, struct sigpending *signals ...@@ -752,7 +752,7 @@ static int send_signal(int sig, struct siginfo *info, struct sigpending *signals
static int static int
specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t) specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
{ {
int ret; int ret = 0;
if (!irqs_disabled()) if (!irqs_disabled())
BUG(); BUG();
...@@ -1346,7 +1346,6 @@ do_notify_parent_cldstop(struct task_struct *tsk, struct task_struct *parent) ...@@ -1346,7 +1346,6 @@ do_notify_parent_cldstop(struct task_struct *tsk, struct task_struct *parent)
static void static void
finish_stop(int stop_count) finish_stop(int stop_count)
{ {
int ret;
/* /*
* If there are no other threads in the group, or if there is * If there are no other threads in the group, or if there is
* a group stop in progress and we are the last to stop, * a group stop in progress and we are the last to stop,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment