Closed yardenshafir closed 2 years ago
(*(PULONG_PTR*)UserPointerToIncrementValue)++; increments by one pointer (so 8) instead of 1. To make this a 1-byte arbitrary increment, making UserPointerToIncrementValue a PCHAR, and incrementing by 1 CHAR.
(*(PULONG_PTR*)UserPointerToIncrementValue)++;
Hi @yardenshafir thanks for bug report and pull request
(*(PULONG_PTR*)UserPointerToIncrementValue)++;
increments by one pointer (so 8) instead of 1. To make this a 1-byte arbitrary increment, making UserPointerToIncrementValue a PCHAR, and incrementing by 1 CHAR.