mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 11:53:32 +00:00
CORE-20657, CORE-13525 Fix an issue in `SetupGetBinaryField()` that made the GUI installer unable to read INF files properly. For this reason, all the binary values in the registry on a fresh ReactOS installation were all set to `0x00`. The reason was that the custom HEX parser in Wine's `SetupGetBinaryField()` is broken. As a solution, we can replace it with a call to C's standard `wcstoul()` function. (Note that Wine fixed this problem in wine-11, still with a hand-made hex-value parser...)