diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-15 11:25:41 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-15 11:25:41 -0800 |
commit | a520458fccc5f5dd4d0ed63c0602db2fd3172b21 (patch) | |
tree | 3bca2be919eac0bfb50bd0623cda6df589260de8 /drivers/mtd/ubi/cdev.c | |
parent | c49c41a4134679cecb77362e7f6b59acb6320aa7 (diff) | |
parent | 1f4f43475f1295dc41c18684e59deea9b6d46045 (diff) |
Merge branch 'linux-next' of git://git.infradead.org/ubifs-2.6
* 'linux-next' of git://git.infradead.org/ubifs-2.6:
UBI: use own macros for the layout volume
UBI: fix nameless volumes handling
UBIFS: fix non-debug configuration build
Diffstat (limited to 'drivers/mtd/ubi/cdev.c')
-rw-r--r-- | drivers/mtd/ubi/cdev.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c index 3320a50ba4f..ad76592fb2f 100644 --- a/drivers/mtd/ubi/cdev.c +++ b/drivers/mtd/ubi/cdev.c @@ -632,6 +632,9 @@ static int verify_mkvol_req(const struct ubi_device *ubi, if (req->alignment != 1 && n) goto bad; + if (!req->name[0] || !req->name_len) + goto bad; + if (req->name_len > UBI_VOL_NAME_MAX) { err = -ENAMETOOLONG; goto bad; |