mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 12:55:43 +00:00
[RDBSS]
Fix uninit var usage CORE-13345 CORE-11327 svn path=/trunk/; revision=74737
This commit is contained in:
parent
fce964935e
commit
b39d02678f
1 changed files with 1 additions and 1 deletions
|
@ -809,7 +809,7 @@ RxCanonicalizeFileNameByServerSpecs(
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Validate name is correct */
|
/* Validate name is correct */
|
||||||
for (NextChar = 0; CurChar + 1 < MaxChars; NextChar = CurChar + 1)
|
for (NextChar = 0, CurChar = 0; CurChar + 1 < MaxChars; NextChar = CurChar + 1)
|
||||||
{
|
{
|
||||||
USHORT i;
|
USHORT i;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue