Skip to content
Snippets Groups Projects
Unverified Commit b94b08fa authored by Hexagon12's avatar Hexagon12 Committed by GitHub
Browse files

Merge pull request #2491 from FernandoS27/dma-fix

Dma_pusher: ASSERT on empty command_list
parents f8b1e533 9e98100c
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,13 @@ bool DmaPusher::Step() {
}
const CommandList& command_list{dma_pushbuffer.front()};
ASSERT_OR_EXECUTE(!command_list.empty(), {
// Somehow the command_list is empty, in order to avoid a crash
// We ignore it and assume its size is 0.
dma_pushbuffer.pop();
dma_pushbuffer_subindex = 0;
return true;
});
const CommandListHeader command_list_header{command_list[dma_pushbuffer_subindex++]};
GPUVAddr dma_get = command_list_header.addr;
GPUVAddr dma_put = dma_get + command_list_header.size * sizeof(u32);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment