- Patch by hto: Suspicious code in User32.dll, see bug 3935.

svn path=/trunk/; revision=37922
This commit is contained in:
James Tabor 2008-12-08 03:34:22 +00:00
parent c63a203efa
commit cbe31af1b2

View file

@ -676,9 +676,10 @@ static void TEXT_SkipChars (int *new_count, const WCHAR **new_str,
assert (max >= n); assert (max >= n);
max -= n; max -= n;
while (n--) while (n--)
{
if (*start_str++ == PREFIX && max--) if (*start_str++ == PREFIX && max--)
start_str++; start_str++;
else; }
start_count -= (start_str - str_on_entry); start_count -= (start_str - str_on_entry);
} }
else else
@ -736,7 +737,6 @@ static int TEXT_Reprefix (const WCHAR *str, unsigned int ns,
str++; str++;
ns--; ns--;
} }
else;
i++; i++;
} }
return result; return result;