mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-30 17:18:21 +03:00
libdm: put in secure check
Coverity complains about NULL deref - while this cannot currently happen, put in secure INTERNAL_ERROR.
This commit is contained in:
parent
0128770d6d
commit
d74e1291cd
@ -3527,6 +3527,10 @@ static struct field_selection *_create_field_selection(struct dm_report *rh,
|
||||
}
|
||||
break;
|
||||
case DM_REPORT_FIELD_TYPE_STRING_LIST:
|
||||
if (!custom) {
|
||||
log_error(INTERNAL_ERROR "Custom selection list is undefined.");
|
||||
goto error;
|
||||
}
|
||||
fs->value->v.l = *(struct selection_str_list **)custom;
|
||||
if (_check_value_is_strictly_reserved(rh, field_num, DM_REPORT_FIELD_TYPE_STRING_LIST, fs->value->v.l, NULL)) {
|
||||
log_error("String list value found in selection is reserved.");
|
||||
|
Loading…
Reference in New Issue
Block a user