diff options
Diffstat (limited to 'fs/compat.c')
-rw-r--r-- | fs/compat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/compat.c b/fs/compat.c index 263990ae4096..ef5a0771592d 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
@@ -1476,10 +1476,9 @@ int compat_do_execve(char * filename, | |||
1476 | int i; | 1476 | int i; |
1477 | 1477 | ||
1478 | retval = -ENOMEM; | 1478 | retval = -ENOMEM; |
1479 | bprm = kmalloc(sizeof(*bprm), GFP_KERNEL); | 1479 | bprm = kzalloc(sizeof(*bprm), GFP_KERNEL); |
1480 | if (!bprm) | 1480 | if (!bprm) |
1481 | goto out_ret; | 1481 | goto out_ret; |
1482 | memset(bprm, 0, sizeof(*bprm)); | ||
1483 | 1482 | ||
1484 | file = open_exec(filename); | 1483 | file = open_exec(filename); |
1485 | retval = PTR_ERR(file); | 1484 | retval = PTR_ERR(file); |