Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(952)

Unified Diff: testing/libfuzzer/fuzzers/re2_fuzzer.cc

Issue 2694693002: Roll re2 dba3349..596d73e. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: testing/libfuzzer/fuzzers/re2_fuzzer.cc
diff --git a/testing/libfuzzer/fuzzers/re2_fuzzer.cc b/testing/libfuzzer/fuzzers/re2_fuzzer.cc
index c59ce2ff0a07d83fab3ab1944c8674ec52c9cb5e..023a9ab8d7e74d527a9f5b436152eaebadfe895a 100644
--- a/testing/libfuzzer/fuzzers/re2_fuzzer.cc
+++ b/testing/libfuzzer/fuzzers/re2_fuzzer.cc
@@ -13,7 +13,6 @@
#include <string>
#include "re2/re2.h"
-#include "util/logging.h"
tfarina 2017/02/13 10:09:05 Is this change and the other below necessary for t
mmoroz 2017/02/13 10:15:46 Yes. This header doesn't exist anymore. Due to tha
using re2::StringPiece;
using std::string;
@@ -70,7 +69,6 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
hash ^= (hash >> 11);
hash += (hash << 15);
- re2::FLAGS_minloglevel = 3;
RE2::Options options;
options.set_log_errors(false);
options.set_encoding(hash & 1 ? RE2::Options::EncodingLatin1
« no previous file with comments | « DEPS ('k') | third_party/re2/BUILD.gn » ('j') | third_party/re2/README.chromium » ('J')

Powered by Google App Engine
This is Rietveld 408576698