Commit 305c7347 authored by vegorov's avatar vegorov Committed by Commit bot

CodeTracer should open file in binary mode to avoid line endings normalization.

Review URL: https://codereview.chromium.org/924943006

Cr-Commit-Position: refs/heads/master@{#26678}
parent b82a49e6
......@@ -1561,7 +1561,7 @@ class CodeTracer FINAL : public Malloced {
}
if (file_ == NULL) {
file_ = base::OS::FOpen(filename_.start(), "a");
file_ = base::OS::FOpen(filename_.start(), "ab");
}
scope_depth_++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment