mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
[USETUP]
Treat REG_DWORD values in inf files as unsigned values. svn path=/trunk/; revision=56390
This commit is contained in:
parent
5258184b49
commit
d0ca2665de
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue