commit | 923bed030ff6e20b5176e10da151fade83097891 | [log] [tgz] |
---|---|---|
author | Oleg Nesterov <[email protected]> | Wed Jul 03 15:08:20 2013 -0700 |
committer | Linus Torvalds <[email protected]> | Wed Jul 03 16:08:02 2013 -0700 |
tree | 80de412a4f62fda39eea66fe2c2d0c7f09a30e89 | |
parent | 5fe9d8ca21cc1517258fe448639392d5d542eec6 [diff] |
coredump: kill cn_escape(), introduce cn_esc_printf() The usage of cn_escape() looks really annoying, imho this sequence needs a wrapper. And it is buggy. If cn_printf() does expand_corename() cn_escape() writes to the freed memory. Introduce cn_esc_printf() which hopefully does this all right. It records the index before cn_vprintf(), not "char *" which is no longer valid (in general) after krealloc(). Signed-off-by: Oleg Nesterov <[email protected]> Cc: Andi Kleen <[email protected]> Cc: Colin Walters <[email protected]> Cc: Denys Vlasenko <[email protected]> Cc: Jiri Slaby <[email protected]> Cc: Lennart Poettering <[email protected]> Cc: Lucas De Marchi <[email protected]> Acked-by: Neil Horman <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>