diff options
author | Mike Frysinger <vapier@chromium.org> | 2020-09-07 17:29:40 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@chromium.org> | 2020-09-07 23:03:28 +0000 |
commit | 5640e57f1f28472efdce2add14fd169b7e273037 (patch) | |
tree | 984fdd42f6a1dd98ef24ebaff420564c6ea01b00 /src/client/linux | |
parent | linux: Fix leak when the offset of memory_mapped_file is greater than 0 (diff) | |
download | breakpad-5640e57f1f28472efdce2add14fd169b7e273037.tar.xz |
CopyFile: add a C++ API
Having to swizzle to C strings all the time is a bit annoying.
Change-Id: I0b80877706e32e873e567685f6b471745da70311
Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/2396557
Reviewed-by: Mark Mentovai <mark@chromium.org>
Diffstat (limited to 'src/client/linux')
-rw-r--r-- | src/client/linux/minidump_writer/minidump_writer_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/linux/minidump_writer/minidump_writer_unittest.cc b/src/client/linux/minidump_writer/minidump_writer_unittest.cc index ac93a343..d192e5cb 100644 --- a/src/client/linux/minidump_writer/minidump_writer_unittest.cc +++ b/src/client/linux/minidump_writer/minidump_writer_unittest.cc @@ -521,7 +521,7 @@ TEST(MinidumpWriterTest, DeletedBinary) { // Copy binary to a temp file. AutoTempDir temp_dir; string binpath = temp_dir.path() + "/linux-dumper-unittest-helper"; - ASSERT_TRUE(CopyFile(helper_path.c_str(), binpath.c_str())) + ASSERT_TRUE(CopyFile(helper_path, binpath)) << "Failed to copy " << helper_path << " to " << binpath; ASSERT_EQ(0, chmod(binpath.c_str(), 0755)); |