mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[USETUP]
Treat REG_DWORD values in inf files as unsigned values. svn path=/trunk/; revision=56390
This commit is contained in:
@@ -306,7 +306,7 @@ do_reg_operation(HANDLE KeyHandle,
|
||||
|
||||
if (Type == REG_DWORD)
|
||||
{
|
||||
ULONG dw = Str ? wcstol (Str, NULL, 0) : 0;
|
||||
ULONG dw = Str ? wcstoul (Str, NULL, 0) : 0;
|
||||
|
||||
DPRINT("setting dword %wZ to %lx\n", ValueName, dw);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user