mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[c-host] fix bounds checking on frame index
This commit is contained in:
parent
a75b95694b
commit
9d6d137b50
@ -160,7 +160,7 @@ static int frameThread(void * opaque)
|
||||
|
||||
// we increment the index first so that if we need to repeat a frame
|
||||
// the index still points to the latest valid frame
|
||||
if (app.frameIndex++ == LGMP_Q_FRAME_LEN)
|
||||
if (++app.frameIndex == LGMP_Q_FRAME_LEN)
|
||||
app.frameIndex = 0;
|
||||
|
||||
KVMFRFrame * fi = lgmpHostMemPtr(app.frameMemory[app.frameIndex]);
|
||||
|
Loading…
Reference in New Issue
Block a user