mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
regedit: Fix importing of .reg hex.
This commit is contained in:
parent
799ef700c4
commit
34749c2a07
@ -109,7 +109,9 @@ static BYTE* convertHexCSVToHex(char *str, DWORD *size)
|
||||
*d++ =(BYTE)wc;
|
||||
(*size)++;
|
||||
|
||||
s+=(wc < 0x10 ? 2 : 3);
|
||||
/* Skip one or two digits and any comma */
|
||||
while (*s && *s!=',') s++;
|
||||
if (*s) s++;
|
||||
}
|
||||
|
||||
return data;
|
||||
|
Loading…
Reference in New Issue
Block a user