mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
Don't use a dereferencing operator when incrementing the pointer here.
Doesn't change the actual logic, but should avoid confusions ;-) See issue #4557 for more details. svn path=/trunk/; revision=41152
This commit is contained in:
parent
5907aba3f0
commit
d3f761e829
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ Directory::EscapeSpaces ( const string& path )
|
|||
newpath = newpath + "\\ ";
|
||||
else
|
||||
newpath = newpath + *p;
|
||||
*p++;
|
||||
p++;
|
||||
}
|
||||
return newpath;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue