В ядре Linux устранена следующая уязвимость:
drm/client: не уничтожать NULL-режимы
«режимы» в drm_client_modeset_probe могут не выполнить kcalloc. Если это
происходит, мы переходим к «out», вызывая на нем mode_destroy, что
разыменовывает его. Это может привести к разыменованию NULL-указателя в
случай ошибки.
Предотвратите это.
Показать оригинальное описание (EN)
In the Linux kernel, the following vulnerability has been resolved: drm/client: Do not destroy NULL modes 'modes' in drm_client_modeset_probe may fail to kcalloc. If this occurs, we jump to 'out', calling modes_destroy on it, which dereferences it. This may result in a NULL pointer dereference in the error case. Prevent that.