mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
bugfix - Replace() was truncating the string
svn path=/trunk/; revision=17507
This commit is contained in:
parent
e5cc52e14b
commit
2a5ef2ef24
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ Replace ( const string& s, const string& find, const string& with )
|
||||||
p = p2 + find.size();
|
p = p2 + find.size();
|
||||||
}
|
}
|
||||||
if ( *p )
|
if ( *p )
|
||||||
ret += *p;
|
ret += p;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue