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

Signed-off-by: Meredydd Luff <mered...@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

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to