mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Disable check for invalid chars in string.
svn path=/trunk/; revision=12133
This commit is contained in:
parent
2288ba398c
commit
7be51c63cb
1 changed files with 2 additions and 1 deletions
|
@ -1709,6 +1709,7 @@ BOOL WINAPI GetPrivateProfileStructW (LPCWSTR section, LPCWSTR key,
|
||||||
DWORD chksum = 0;
|
DWORD chksum = 0;
|
||||||
|
|
||||||
end = k->value + wcslen(k->value); /* -> '\0' */
|
end = k->value + wcslen(k->value); /* -> '\0' */
|
||||||
|
#if 0
|
||||||
/* check for invalid chars in ASCII coded hex string */
|
/* check for invalid chars in ASCII coded hex string */
|
||||||
for (p = k->value; p < end; p++)
|
for (p = k->value; p < end; p++)
|
||||||
{
|
{
|
||||||
|
@ -1720,7 +1721,7 @@ BOOL WINAPI GetPrivateProfileStructW (LPCWSTR section, LPCWSTR key,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
if (valid)
|
if (valid)
|
||||||
{
|
{
|
||||||
BOOL highnibble = TRUE;
|
BOOL highnibble = TRUE;
|
||||||
|
|
Loading…
Reference in a new issue