mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:42:58 +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 + "\\ ";
|
newpath = newpath + "\\ ";
|
||||||
else
|
else
|
||||||
newpath = newpath + *p;
|
newpath = newpath + *p;
|
||||||
*p++;
|
p++;
|
||||||
}
|
}
|
||||||
return newpath;
|
return newpath;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue