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

Unified Diff: net/spdy/fuzzing/hpack_example_generator.cc

Issue 268943002: Add hpack_fuzz_wrapper to chromium_builder_asan (re-apply). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also disable warning C4267. Created 6 years, 8 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 | « net/net.gyp ('k') | net/spdy/fuzzing/hpack_fuzz_mutator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/fuzzing/hpack_example_generator.cc
diff --git a/net/spdy/fuzzing/hpack_example_generator.cc b/net/spdy/fuzzing/hpack_example_generator.cc
index 081451d0e0c699b5f2eb6c23127c796313837626..9e49642d3a222872aa74ff639996424e30970a93 100644
--- a/net/spdy/fuzzing/hpack_example_generator.cc
+++ b/net/spdy/fuzzing/hpack_example_generator.cc
@@ -48,7 +48,7 @@ int main(int argc, char** argv) {
&example_count);
DVLOG(1) << "Writing output to " << file_to_write;
- base::File file_out(base::FilePath(file_to_write),
+ base::File file_out(base::FilePath::FromUTF8Unsafe(file_to_write),
base::File::FLAG_CREATE_ALWAYS | base::File::FLAG_WRITE);
CHECK(file_out.IsValid()) << file_out.error_details();
« no previous file with comments | « net/net.gyp ('k') | net/spdy/fuzzing/hpack_fuzz_mutator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698