mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
drm: fix uninitialized read
get_drm_prop_blob does not set path_len if it returns NULL. Check the return value before path_len to avoid reading uninitialized memory. (Granted, this doesn't change the logic at all, but it does make Valgrind a bit happier.)
This commit is contained in:
parent
74f7be7287
commit
aaf490d794
1 changed files with 1 additions and 1 deletions
|
@ -1398,7 +1398,7 @@ void scan_drm_connectors(struct wlr_drm_backend *drm) {
|
|||
bool is_mst = false;
|
||||
char *path = get_drm_prop_blob(drm->fd, wlr_conn->id,
|
||||
wlr_conn->props.path, &path_len);
|
||||
if (path_len > 4 && path && strncmp(path, "mst:", 4) == 0) {
|
||||
if (path && path_len > 4 && strncmp(path, "mst:", 4) == 0) {
|
||||
is_mst = true;
|
||||
}
|
||||
free(path);
|
||||
|
|
Loading…
Reference in a new issue