From 2a5ef2ef24218bec934fbc6b03165396400f0935 Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Wed, 24 Aug 2005 06:01:02 +0000 Subject: [PATCH] bugfix - Replace() was truncating the string svn path=/trunk/; revision=17507 --- reactos/tools/rbuild/module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/rbuild/module.cpp b/reactos/tools/rbuild/module.cpp index 907991a0f06..d8592158f61 100644 --- a/reactos/tools/rbuild/module.cpp +++ b/reactos/tools/rbuild/module.cpp @@ -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; }