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

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

Issue 2694693002: Roll re2 dba3349..596d73e. (Closed)
Patch Set: Use unsigned literal when asserting re2::StringPiece::size() value. 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
« no previous file with comments | « components/password_manager/core/browser/import/csv_reader.cc ('k') | third_party/re2/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
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 | « components/password_manager/core/browser/import/csv_reader.cc ('k') | third_party/re2/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698