mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-24 06:18:10 +02:00
st/dri: check pscreen is valid before querying param
we don't check the validity of pscreen until dri_init_screen_helper hit this trying to init glamor on a device with no driver (udl). Acked-by: Michel Dänzer <michel.daenzer@amd.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
c6877c9e59
commit
563706c146
1 changed files with 1 additions and 1 deletions
|
|
@ -1483,7 +1483,7 @@ dri2_init_screen(__DRIscreen * sPriv)
|
|||
}
|
||||
}
|
||||
|
||||
if (pscreen->get_param(pscreen, PIPE_CAP_DEVICE_RESET_STATUS_QUERY)) {
|
||||
if (pscreen && pscreen->get_param(pscreen, PIPE_CAP_DEVICE_RESET_STATUS_QUERY)) {
|
||||
sPriv->extensions = dri_robust_screen_extensions;
|
||||
screen->has_reset_status_query = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue