bugfix - Replace() was truncating the string
authorRoyce Mitchell III <royce3@ev1.net>
Wed, 24 Aug 2005 06:01:02 +0000 (06:01 +0000)
committerRoyce Mitchell III <royce3@ev1.net>
Wed, 24 Aug 2005 06:01:02 +0000 (06:01 +0000)
svn path=/trunk/; revision=17507

reactos/tools/rbuild/module.cpp

index 907991a..d859215 100644 (file)
@@ -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;
 }