]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
coredump: '% at the end' shouldn't bypass core_uses_pid logic
authorOleg Nesterov <oleg@redhat.com>
Wed, 3 Jul 2013 00:21:37 +0000 (10:21 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 17 Jul 2013 02:35:01 +0000 (12:35 +1000)
"goto end" should not bypass the "Backward compatibility with
core_uses_pid" code, move this label up.

While at it,

- It is ugly to copy '|' into cn->corename and then inc
  the pointer for argv_split().

  Change format_corename() to increment pat_ptr instead.

- Remove the dead "if (*pat_ptr == 0)" in format_corename(),
  we already checked it is not zero.

Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: Colin Walters <walters@verbum.org>
Cc: Denys Vlasenko <vda.linux@googlemail.com>
Cc: Jiri Slaby <jslaby@suse.cz>
Cc: Lennart Poettering <mzxreary@0pointer.de>
Cc: Lucas De Marchi <lucas.de.marchi@gmail.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/coredump.c

index fb4e2b7ea07b3555a6b32fb05eebd7ba6fd24a88..e10f976a22dba55f37588c27f2f38bc29ec4ee3f 100644 (file)
@@ -167,6 +167,9 @@ static int format_corename(struct core_name *cn, struct coredump_params *cprm)
                return -ENOMEM;
        cn->corename[0] = '\0';
 
+       if (ispipe)
+               ++pat_ptr;
+
        if (ispipe)
                ++pat_ptr;