mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-09 20:40:28 +01:00
nouveau: another "argh gallium fscks with assert" fix
This commit is contained in:
parent
82f22d9e14
commit
66ba021e9f
1 changed files with 2 additions and 1 deletions
|
|
@ -193,7 +193,8 @@ nouveau_pushbuf_flush(struct nouveau_channel *chan, unsigned min)
|
|||
nouveau_fence_ref(NULL, &fence);
|
||||
|
||||
/* Allocate space for next push buffer */
|
||||
assert(!nouveau_pushbuf_space(chan, min));
|
||||
ret = nouveau_pushbuf_space(chan, min);
|
||||
assert(!ret);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue