Merge remote-tracking branch 'dezgeg/afl-fixes'
This commit is contained in:
commit
7c377dc5cc
|
@ -1913,21 +1913,26 @@ static void prim_replaceStrings(EvalState & state, const Pos & pos, Value * * ar
|
||||||
auto s = state.forceString(*args[2], context, pos);
|
auto s = state.forceString(*args[2], context, pos);
|
||||||
|
|
||||||
string res;
|
string res;
|
||||||
for (size_t p = 0; p < s.size(); ) {
|
// Loops one past last character to handle the case where 'from' contains an empty string.
|
||||||
|
for (size_t p = 0; p <= s.size(); ) {
|
||||||
bool found = false;
|
bool found = false;
|
||||||
auto i = from.begin();
|
auto i = from.begin();
|
||||||
auto j = to.begin();
|
auto j = to.begin();
|
||||||
for (; i != from.end(); ++i, ++j)
|
for (; i != from.end(); ++i, ++j)
|
||||||
if (s.compare(p, i->size(), *i) == 0) {
|
if (s.compare(p, i->size(), *i) == 0) {
|
||||||
found = true;
|
found = true;
|
||||||
p += i->size();
|
|
||||||
res += j->first;
|
res += j->first;
|
||||||
|
if (i->empty()) {
|
||||||
|
res += s[p++];
|
||||||
|
} else {
|
||||||
|
p += i->size();
|
||||||
|
}
|
||||||
for (auto& path : j->second)
|
for (auto& path : j->second)
|
||||||
context.insert(path);
|
context.insert(path);
|
||||||
j->second.clear();
|
j->second.clear();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (!found) res += s[p++];
|
if (!found && p < s.size()) res += s[p++];
|
||||||
}
|
}
|
||||||
|
|
||||||
mkString(v, res, context);
|
mkString(v, res, context);
|
||||||
|
|
|
@ -189,7 +189,8 @@ Hash::Hash(const std::string & s, HashType type)
|
||||||
|
|
||||||
else if (size == base64Len()) {
|
else if (size == base64Len()) {
|
||||||
auto d = base64Decode(std::string(s, pos));
|
auto d = base64Decode(std::string(s, pos));
|
||||||
assert(d.size() == hashSize);
|
if (d.size() != hashSize)
|
||||||
|
throw BadHash("invalid base-64 hash '%s'", s);
|
||||||
memcpy(hash, d.data(), hashSize);
|
memcpy(hash, d.data(), hashSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1216,7 +1216,7 @@ std::string filterANSIEscapes(const std::string & s, unsigned int width)
|
||||||
|
|
||||||
else if (*i == '\r')
|
else if (*i == '\r')
|
||||||
// do nothing for now
|
// do nothing for now
|
||||||
;
|
i++;
|
||||||
|
|
||||||
else {
|
else {
|
||||||
t += *i++; w++;
|
t += *i++; w++;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
[ "faabar" "fbar" "fubar" "faboor" "fubar" ]
|
[ "faabar" "fbar" "fubar" "faboor" "fubar" "XaXbXcX" "X" ]
|
||||||
|
|
|
@ -5,4 +5,6 @@ with builtins;
|
||||||
(replaceStrings ["oo"] ["u"] "foobar")
|
(replaceStrings ["oo"] ["u"] "foobar")
|
||||||
(replaceStrings ["oo" "a"] ["a" "oo"] "foobar")
|
(replaceStrings ["oo" "a"] ["a" "oo"] "foobar")
|
||||||
(replaceStrings ["oo" "oo"] ["u" "i"] "foobar")
|
(replaceStrings ["oo" "oo"] ["u" "i"] "foobar")
|
||||||
|
(replaceStrings [""] ["X"] "abc")
|
||||||
|
(replaceStrings [""] ["X"] "")
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue