summaryrefslogtreecommitdiff
path: root/libs/ardour/sndfileimportable.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/sndfileimportable.cc')
-rw-r--r--libs/ardour/sndfileimportable.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/libs/ardour/sndfileimportable.cc b/libs/ardour/sndfileimportable.cc
index 5ccab2c0d2..ffc894b2d4 100644
--- a/libs/ardour/sndfileimportable.cc
+++ b/libs/ardour/sndfileimportable.cc
@@ -24,6 +24,9 @@
#include "pbd/error.h"
#include "ardour/sndfileimportable.h"
+#include <fcntl.h>
+#include <glib/gstdio.h>
+
using namespace ARDOUR;
using namespace std;
@@ -67,8 +70,12 @@ SndFileImportableSource::get_timecode_info (SNDFILE* sf, SF_BROADCAST_INFO* binf
SndFileImportableSource::SndFileImportableSource (const string& path)
{
+ int fd;
+ if ((-1) == (fd = g_open (path.c_str(), O_RDONLY, 0664)))
+ throw failed_constructor();
+
memset(&sf_info, 0 , sizeof(sf_info));
- in.reset( sf_open(path.c_str(), SFM_READ, &sf_info), sf_close);
+ in.reset( sf_open_fd(fd, SFM_READ, &sf_info, true), sf_close);
if (!in) throw failed_constructor();
SF_BROADCAST_INFO binfo;