diff options
author | Mika Westerberg <[email protected]> | 2010-01-26 17:47:05 +0200 |
---|---|---|
committer | Artem Bityutskiy <[email protected]> | 2010-01-27 11:55:43 +0200 |
commit | c5ce5b46af76f52dea21f467397d24c4ae6cb3ff (patch) | |
tree | cd45d66f718c6e632ab366e9847129c913821f41 | |
parent | 92dcffb916d309aa01778bf8963a6932e4014d07 (diff) |
UBI: fix volume creation input checking
Do not use an unchecked variable UBI_IOCMKVOL ioctl.
Signed-off-by: Mika Westerberg <[email protected]>
Signed-off-by: Artem Bityutskiy <[email protected]>
Cc: [email protected]
-rw-r--r-- | drivers/mtd/ubi/cdev.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c index f237ddbb2713..111ea41c4ecd 100644 --- a/drivers/mtd/ubi/cdev.c +++ b/drivers/mtd/ubi/cdev.c @@ -853,7 +853,6 @@ static long ubi_cdev_ioctl(struct file *file, unsigned int cmd, break; } - req.name[req.name_len] = '\0'; err = verify_mkvol_req(ubi, &req); if (err) break; |