mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 04:40:11 +01:00
nouveau/push: Fix a void pointer arithmetic bug
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24326>
This commit is contained in:
parent
33ed4b9bc5
commit
9db0c9fb2d
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ nouveau_ws_push_space(struct nouveau_ws_push *push,
|
|||
if (!bo)
|
||||
return NULL;
|
||||
|
||||
void *map = nouveau_ws_bo_map(bo, NOUVEAU_WS_BO_RDWR);
|
||||
uint32_t *map = nouveau_ws_bo_map(bo, NOUVEAU_WS_BO_RDWR);
|
||||
if (!map)
|
||||
goto fail_map;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue