forked from luck/tmp_suning_uos_patched
drm/qxl: Fix crash in eviction from qxl_release_fence_buffer_objects
This crash was already here before the conversion, but qxl never leaked hard enough to hit this. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>
This commit is contained in:
parent
b75402c9f9
commit
58b21c22c6
|
@ -440,7 +440,7 @@ void qxl_release_fence_buffer_objects(struct qxl_release *release)
|
|||
|
||||
/* if only one object on the release its the release itself
|
||||
since these objects are pinned no need to reserve */
|
||||
if (list_is_singular(&release->bos))
|
||||
if (list_is_singular(&release->bos) || list_empty(&release->bos))
|
||||
return;
|
||||
|
||||
bo = list_first_entry(&release->bos, struct ttm_validate_buffer, head)->bo;
|
||||
|
|
Loading…
Reference in New Issue
Block a user