diff options
author | Stanislav Kinsbursky <[email protected]> | 2013-01-04 15:34:47 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2013-01-04 16:11:45 -0800 |
commit | 9afdacda0252fc1ddb7907728e878518edbcdfce (patch) | |
tree | 1ec270f4fd688353c51c2d21f26b22b00f7ef65a | |
parent | 2d79cf8a9dfbaef1e57c88a709689577c8482a17 (diff) |
ipc: remove forced assignment of selected message
This is a cleanup patch. The assignment is redundant.
Signed-off-by: Stanislav Kinsbursky <[email protected]>
Cc: Serge Hallyn <[email protected]>
Cc: "Eric W. Biederman" <[email protected]>
Cc: Pavel Emelyanov <[email protected]>
Cc: Al Viro <[email protected]>
Cc: KOSAKI Motohiro <[email protected]>
Cc: Michael Kerrisk <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | ipc/msg.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ipc/msg.c b/ipc/msg.c index a71af5a65abf..2f272fa76595 100644 --- a/ipc/msg.c +++ b/ipc/msg.c @@ -793,12 +793,9 @@ long do_msgrcv(int msqid, long *pmtype, void __user *mtext, msg = walk_msg; if (mode == SEARCH_LESSEQUAL && walk_msg->m_type != 1) { - msg = walk_msg; msgtyp = walk_msg->m_type - 1; - } else { - msg = walk_msg; + } else break; - } } tmp = tmp->next; } |