Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged PR 5769: Replace incorrect sizeof() with strlen() in compiler …
…version test Replace incorrect sizeof() with strlen() in compiler version test This would produce a failure only on x86 because it sizeof() gave the size of a pointer, which just so happens to be the hard coded size of the hash on x64. On x86, it would advance only 4 bytes, and fail the comparison. This also checks to see if the VersionStringListSizeInBytes is > 2 more than the hash size, because both null-terminators are always added, so it will always be at least 2 more, even with no CustomVersionString.
- Loading branch information