Skip to content

Commit 3f94d98

Browse files
committedFeb 8, 2013
Bug fix for the string_replace function
1 parent ceafb40 commit 3f94d98

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed
 

‎src/Core.cpp

+4-6
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,11 @@ std::string string_right(const std::string& str, size_t size)
146146

147147
void string_replace(std::string& str, const char* what, const char* with)
148148
{
149-
size_t len = strlen(with);
150-
while (true)
149+
size_t pos = 0;
150+
while((pos = str.find(what, pos)) != std::string::npos)
151151
{
152-
size_t pos = str.find(what);
153-
if (pos == std::string::npos)
154-
break;
155-
str.replace(pos, len-1, with);
152+
str.replace(pos, strlen(what), with);
153+
pos += strlen(with);
156154
}
157155
}
158156

0 commit comments

Comments
 (0)
Please sign in to comment.