summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pugixpath.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/pugixpath.cpp b/src/pugixpath.cpp
index 6e9cbbe..e262d68 100644
--- a/src/pugixpath.cpp
+++ b/src/pugixpath.cpp
@@ -2249,10 +2249,12 @@ namespace pugi
{
std::string::size_type pos = from.find(*it);
- if (pos != std::string::npos && pos >= to.length())
+ if (pos == std::string::npos)
+ ++it;
+ else if (pos >= to.length())
it = s.erase(it);
- else if (pos != std::string::npos)
- *it = to[pos];
+ else
+ *it++ = to[pos];
}
return s;