gpulib: fix out-of-bounds reads in do_cmd_buffer()
authorDaniel Silsby <dansilsby@gmail.com>
Sat, 9 Nov 2019 01:30:04 +0000 (20:30 -0500)
committertwinaphex <libretro@gmail.com>
Sat, 8 Feb 2020 14:50:06 +0000 (15:50 +0100)
commit79573c20e473b4f8490a50b772a1636a50c1b594
tree69d87122cf6af8870bfde511328052111c0e716a
parentea884d3029c673e06a4084156ceb662598d8945a
gpulib: fix out-of-bounds reads in do_cmd_buffer()

When gpu.cmd_buffer[] is filling up, and the last 1 or 2 words
in it are the beginning of a new vram read/write cmd, do_cmd_buffer()
would access out-of-bounds, reading garbage pos/size data.

Fixes corrupted gfx in this PS1 .exe test utility:
https://github.com/PeterLemon/PSX/tree/master/CPUTest/CPU/LOADSTORE/LW
(This and all similar tests on Peter's site).
Note that gfx access in this utility is done entirely through cmds given
through GPUwriteData(), i.e. direct CPU->GP0 stores, not DMA.
plugins/gpulib/gpu.c