arch/frv/kernel/setup.c: use strncmp() instead of memcmp()

'cmdline' is a NUL terminated string, when its length < 4, memcmp()
will cause memory access out of boundary.

So use strncmp() instead of memcmp().

Signed-off-by: Chen Gang <gang.chen@asianux.com>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Chen Gang 2013-07-03 15:04:53 -07:00 коммит произвёл Linus Torvalds
Родитель 760033c45e
Коммит 98bd8d05ea
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -735,7 +735,7 @@ static void __init parse_cmdline_early(char *cmdline)
/* "mem=XXX[kKmM]" sets SDRAM size to <mem>, overriding the value we worked /* "mem=XXX[kKmM]" sets SDRAM size to <mem>, overriding the value we worked
* out from the SDRAM controller mask register * out from the SDRAM controller mask register
*/ */
if (!memcmp(cmdline, "mem=", 4)) { if (!strncmp(cmdline, "mem=", 4)) {
unsigned long long mem_size; unsigned long long mem_size;
mem_size = memparse(cmdline + 4, &cmdline); mem_size = memparse(cmdline + 4, &cmdline);