diff options
Diffstat (limited to 'fs/exec.c')
-rw-r--r-- | fs/exec.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1770,6 +1770,11 @@ int do_coredump(long signr, int exit_code, struct pt_regs * regs) | |||
1770 | 1770 | ||
1771 | if (ispipe) { | 1771 | if (ispipe) { |
1772 | helper_argv = argv_split(GFP_KERNEL, corename+1, &helper_argc); | 1772 | helper_argv = argv_split(GFP_KERNEL, corename+1, &helper_argc); |
1773 | if (!helper_argv) { | ||
1774 | printk(KERN_WARNING "%s failed to allocate memory\n", | ||
1775 | __func__); | ||
1776 | goto fail_unlock; | ||
1777 | } | ||
1773 | /* Terminate the string before the first option */ | 1778 | /* Terminate the string before the first option */ |
1774 | delimit = strchr(corename, ' '); | 1779 | delimit = strchr(corename, ' '); |
1775 | if (delimit) | 1780 | if (delimit) |