Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix tbb malloc proxy on 14.30.33807 (#1478)
In this version of the ucrtbase.dll, the assembly of the _msize function has changed. The first instruction of this function is a relative jump (0xE9) followed by a 4-byte offset. This offset has changed, but we can safely assume that 0xE9 followed by any offset value is correct, especially since we have special handling for the 0xE9 instruction in the InsertTrampoline() function. The 0xCC is an INT 3 instruction, so it's a free space to use.
- Loading branch information