mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 04:13:35 +00:00
bugfix - Replace() was truncating the string
svn path=/trunk/; revision=17507
This commit is contained in:
@@ -38,7 +38,7 @@ Replace ( const string& s, const string& find, const string& with )
|
||||
p = p2 + find.size();
|
||||
}
|
||||
if ( *p )
|
||||
ret += *p;
|
||||
ret += p;
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user