summaryrefslogtreecommitdiff
path: root/libs/pbd/file_utils.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-12-14 12:26:00 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-12-14 12:26:00 -0500
commit0fa5643d20fd57ce7f878e3c5e51b768ec6b98a3 (patch)
treee3bf7d3da49c3267db5a066e30345c69b7a8a794 /libs/pbd/file_utils.cc
parent06f2136c4fe1fbf028fc765f70cf72b262a3445f (diff)
move ScopedFileDescriptor into libpbd and use it
Diffstat (limited to 'libs/pbd/file_utils.cc')
-rw-r--r--libs/pbd/file_utils.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/pbd/file_utils.cc b/libs/pbd/file_utils.cc
index 89f6818704..f8ab326c5b 100644
--- a/libs/pbd/file_utils.cc
+++ b/libs/pbd/file_utils.cc
@@ -54,6 +54,7 @@
#include "pbd/debug.h"
#include "pbd/error.h"
#include "pbd/pathexpand.h"
+#include "pbd/scoped_file_descriptor.h"
#include "pbd/stl_delete.h"
#include "i18n.h"
@@ -281,8 +282,8 @@ copy_file(const std::string & from_path, const std::string & to_path)
{
if (!Glib::file_test (from_path, Glib::FILE_TEST_EXISTS)) return false;
- int fd_from (::open (from_path.c_str(), O_RDONLY));
- int fd_to (::open (to_path.c_str(), O_CREAT|O_TRUNC|O_RDWR, 0666));
+ PBD::ScopedFileDescriptor fd_from (::open (from_path.c_str(), O_RDONLY));
+ PBD::ScopedFileDescriptor fd_to (::open (to_path.c_str(), O_CREAT|O_TRUNC|O_RDWR, 0666));
char buf[4096]; // BUFSIZ ??
ssize_t nread;