diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c index 13f25e241ac46cbd2f5ffa23de45e60a035a0c1a..25d489bc9453330697b70af11bfa7c077883321d 100644 --- a/fs/binfmt_elf.c +++ b/fs/binfmt_elf.c @@ -1733,7 +1733,7 @@ static int fill_thread_core_info(struct elf_thread_core_info *t, (!regset->active || regset->active(t->task, regset) > 0)) { int ret; size_t size = regset_size(t->task, regset); - void *data = kmalloc(size, GFP_KERNEL); + void *data = kzalloc(size, GFP_KERNEL); if (unlikely(!data)) return 0; ret = regset->get(t->task, regset,