mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-09 22:50:41 +00:00
UBI: fix check on unsigned long
result is unsigned, the wrong check was used. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:
parent
2eadaad67b
commit
774b138210
@ -42,6 +42,7 @@
|
|||||||
#include <linux/log2.h>
|
#include <linux/log2.h>
|
||||||
#include <linux/kthread.h>
|
#include <linux/kthread.h>
|
||||||
#include <linux/reboot.h>
|
#include <linux/reboot.h>
|
||||||
|
#include <linux/kernel.h>
|
||||||
#include "ubi.h"
|
#include "ubi.h"
|
||||||
|
|
||||||
/* Maximum length of the 'mtd=' parameter */
|
/* Maximum length of the 'mtd=' parameter */
|
||||||
@ -1257,7 +1258,7 @@ static int __init bytes_str_to_int(const char *str)
|
|||||||
unsigned long result;
|
unsigned long result;
|
||||||
|
|
||||||
result = simple_strtoul(str, &endp, 0);
|
result = simple_strtoul(str, &endp, 0);
|
||||||
if (str == endp || result < 0) {
|
if (str == endp || result >= INT_MAX) {
|
||||||
printk(KERN_ERR "UBI error: incorrect bytes count: \"%s\"\n",
|
printk(KERN_ERR "UBI error: incorrect bytes count: \"%s\"\n",
|
||||||
str);
|
str);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user