Use dcp::file_to_string().
[dcpomatic.git] / src / lib / send_problem_report_job.cc
index e7fc02eb0e0b13437eb45007f417c09cc6710f8a..6ab83ee6211d6bea24b93fb6e6367f367d93f979 100644 (file)
@@ -119,19 +119,8 @@ SendProblemReportJob::run ()
 void
 SendProblemReportJob::add_file (string& body, boost::filesystem::path file) const
 {
-       auto f = fopen_boost (_film->file(file), "r");
-       if (!f) {
-               return;
-       }
-
        body += file.string() + ":\n";
        body += "---<8----\n";
-       auto const size = boost::filesystem::file_size (_film->file(file));
-       char* buffer = new char[size + 1];
-       int const N = fread (buffer, 1, size, f);
-       buffer[N] = '\0';
-       body += buffer;
-       delete[] buffer;
+       body += dcp::file_to_string (_film->file(file));
        body += "---<8----\n\n";
-       fclose (f);
 }