From: Tim Mayberry Date: Sat, 25 Jul 2015 11:31:42 +0000 (+1000) Subject: Use g_open and sf_open_fd in SndFileImportable instead of sf_open and Glib::locale_fr... X-Git-Tag: 4.2~182 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=ba140634636ff453fa2755832cafd6e15dff0415;p=ardour.git Use g_open and sf_open_fd in SndFileImportable instead of sf_open and Glib::locale_from_utf8 --- diff --git a/libs/ardour/sndfileimportable.cc b/libs/ardour/sndfileimportable.cc index 040771b143..11cff41c35 100644 --- a/libs/ardour/sndfileimportable.cc +++ b/libs/ardour/sndfileimportable.cc @@ -20,6 +20,11 @@ #include #include #include +#include + +#include +#include + #include "pbd/error.h" #include "ardour/sndfileimportable.h" @@ -69,8 +74,12 @@ SndFileImportableSource::get_timecode_info (SNDFILE* sf, SF_BROADCAST_INFO* binf SndFileImportableSource::SndFileImportableSource (const string& path) { + int fd = g_open (path.c_str (), SFM_READ, 0444); + if (fd == -1) { + throw failed_constructor (); + } memset(&sf_info, 0 , sizeof(sf_info)); - in.reset( sf_open(Glib::locale_from_utf8(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;