mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
Add range test for device number
Check the output of atoi is in valid range.
This commit is contained in:
parent
eae8784ae2
commit
7ffca95bb6
@ -1,5 +1,6 @@
|
||||
Version 2.02.91 -
|
||||
===================================
|
||||
Add range test for device number in _scan_proc_dev().
|
||||
Use signed long for sysconf() call in cmirrord.
|
||||
Do not write in front of log buffer in print_log().
|
||||
Add boundary test for number of mirror devs and logs.
|
||||
|
@ -226,7 +226,7 @@ static int _scan_proc_dev(const char *proc, const struct dm_config_node *cn)
|
||||
|
||||
/* If it's not a number it may be name of section */
|
||||
line_maj = atoi(((char *) (line + i)));
|
||||
if (!line_maj) {
|
||||
if ((line_maj <= 0) || (line_maj >= NUMBER_OF_MAJORS)) {
|
||||
blocksection = (line[i] == 'B') ? 1 : 0;
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user