Updates the fuzzer sub-project

This commit is contained in:
Felipe Zimmerle
2016-11-11 10:28:59 -03:00
parent ee996a8373
commit 3ab5c8057d
4 changed files with 86 additions and 73 deletions

View File

@@ -32,7 +32,7 @@ bool BeginsWith::evaluate(Transaction *transaction, const std::string &str) {
if (str.size() < p.size()) {
ret = false;
} else if (!str.compare(0, p.size(), p)) {
ret = true;
ret = true;
}
return ret;