diff options
author | Volker Aßmann <[email protected]> | 2017-06-06 19:26:45 +0200 |
---|---|---|
committer | Volker Aßmann <[email protected]> | 2017-06-06 19:26:45 +0200 |
commit | 74ce98cd71dee48b8260dfe6d0de5d8003d16b23 (patch) | |
tree | 37e35a79881b950c0468502c9ed517c76d0106dd /src/cli | |
parent | c4514146df5461763bb4164fc49ac41474e81b29 (diff) |
Fix missing binary mode flag on compression ofstreams
Diffstat (limited to 'src/cli')
-rw-r--r-- | src/cli/cli.h | 4 | ||||
-rw-r--r-- | src/cli/compress.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/cli/cli.h b/src/cli/cli.h index a5150d6d7..fcff94870 100644 --- a/src/cli/cli.h +++ b/src/cli/cli.h @@ -216,12 +216,12 @@ class Command if(m_user_args.count("output")) { - m_output_stream.reset(new std::ofstream(get_arg("output"))); + m_output_stream.reset(new std::ofstream(get_arg("output"), std::ios::binary)); } if(m_user_args.count("error_output")) { - m_error_output_stream.reset(new std::ofstream(get_arg("error_output"))); + m_error_output_stream.reset(new std::ofstream(get_arg("error_output"), std::ios::binary)); } // Now insert any defaults for options not supplied by the user diff --git a/src/cli/compress.cpp b/src/cli/compress.cpp index e0881d025..c60a33921 100644 --- a/src/cli/compress.cpp +++ b/src/cli/compress.cpp @@ -62,7 +62,7 @@ class Compress final : public Command } const std::string out_file = output_filename(in_file, comp_type); - std::ofstream out(out_file); + std::ofstream out(out_file, std::ios::binary); if(!in.good()) { throw CLI_IO_Error("writing", out_file); @@ -134,7 +134,7 @@ class Decompress final : public Command throw CLI_Error_Unsupported("Decompression", suffix); } - std::ofstream out(out_file); + std::ofstream out(out_file, std::ios::binary); if(!out.good()) { throw CLI_IO_Error("writing", out_file); |