do_sys_name_to_handle(): use kzalloc() to fix kernel-infoleak
[linux-2.6-microblaze.git] / fs / fhandle.c
index 18b3ba8..57a1261 100644 (file)
@@ -36,7 +36,7 @@ static long do_sys_name_to_handle(const struct path *path,
        if (f_handle.handle_bytes > MAX_HANDLE_SZ)
                return -EINVAL;
 
-       handle = kmalloc(sizeof(struct file_handle) + f_handle.handle_bytes,
+       handle = kzalloc(sizeof(struct file_handle) + f_handle.handle_bytes,
                         GFP_KERNEL);
        if (!handle)
                return -ENOMEM;