linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] um: Coding style fix in sys_execve()
@ 2012-08-01 22:23 Meredydd Luff
  2012-08-01 22:28 ` Richard Weinberger
  0 siblings, 1 reply; 2+ messages in thread
From: Meredydd Luff @ 2012-08-01 22:23 UTC (permalink / raw)
  To: linux-kernel; +Cc: Richard Weinberger, Meredydd Luff

Submitting this as a separate patch per richard@nod.at's suggestion.

Signed-off-by: Meredydd Luff <meredydd@senatehouse.org>
---
 arch/um/kernel/exec.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/arch/um/kernel/exec.c b/arch/um/kernel/exec.c
index 6cade93..e74ec80 100644
--- a/arch/um/kernel/exec.c
+++ b/arch/um/kernel/exec.c
@@ -80,7 +80,8 @@ long sys_execve(const char __user *file, const char __user *const __user *argv,
 
 	filename = getname(file);
 	error = PTR_ERR(filename);
-	if (IS_ERR(filename)) goto out;
+	if (IS_ERR(filename))
+		goto out;
 	error = execve1(filename, argv, env);
 	putname(filename);
  out:
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] um: Coding style fix in sys_execve()
  2012-08-01 22:23 [PATCH] um: Coding style fix in sys_execve() Meredydd Luff
@ 2012-08-01 22:28 ` Richard Weinberger
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Weinberger @ 2012-08-01 22:28 UTC (permalink / raw)
  To: Meredydd Luff; +Cc: linux-kernel

On 02.08.2012 00:23, Meredydd Luff wrote:
> Submitting this as a separate patch per richard@nod.at's suggestion.
>
> Signed-off-by: Meredydd Luff <meredydd@senatehouse.org>

Queued for 3.7.

Thanks,
//richard

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-08-01 22:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-01 22:23 [PATCH] um: Coding style fix in sys_execve() Meredydd Luff
2012-08-01 22:28 ` Richard Weinberger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).