If we're hitting the swrast fallback path here, it's probably because
we stumbled across a KMS-only device (such as the ASpeed that some of
our CI runners have) that will then return a NULL driver_name. Don't
crash in that case.
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
* are unavailable since 6c5ab, and kms_swrast is more
* feature complete than swrast.
*/
- if (strcmp(driver_name, "vgem") == 0 ||
- strcmp(driver_name, "virtio_gpu") == 0)
+ if (driver_name &&
+ (strcmp(driver_name, "vgem") == 0 ||
+ strcmp(driver_name, "virtio_gpu") == 0))
dri2_dpy->driver_name = strdup("kms_swrast");
free(driver_name);
} else {