diff options
author | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2023-05-31 19:10:00 +0100 |
---|---|---|
committer | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2023-05-31 19:10:00 +0100 |
commit | 6839341f17326ad932565e7c1a5a07e3d3020da2 (patch) | |
tree | c2b52394060191c1ff1ce33be873d4d0c666baa7 | |
parent | 810d19b6be80ac71adb96b8643823f84e265e8d8 (diff) |
Fix incorrect id check and potential out of bounds lookup
-rw-r--r-- | src/core/hle/service/nvdrv/core/syncpoint_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/core/syncpoint_manager.cpp b/src/core/hle/service/nvdrv/core/syncpoint_manager.cpp index aba51d280..c4c4c2593 100644 --- a/src/core/hle/service/nvdrv/core/syncpoint_manager.cpp +++ b/src/core/hle/service/nvdrv/core/syncpoint_manager.cpp @@ -64,7 +64,7 @@ void SyncpointManager::FreeSyncpoint(u32 id) { } bool SyncpointManager::IsSyncpointAllocated(u32 id) const { - return (id <= SyncpointCount) && syncpoints[id].reserved; + return (id < SyncpointCount) && syncpoints[id].reserved; } bool SyncpointManager::HasSyncpointExpired(u32 id, u32 threshold) const { |