mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
Fix an out of bounds heap read when compacting the ghost device list. Change the loop condition from `GhostPort < DeviceRelations->Count` to `GhostPort < DeviceRelations->Count - 1` so the array shift never reads past the last valid entry.