libptfformat: use g_fopen() to avoid i18n errors with file paths/names

This commit is contained in:
Paul Davis 2016-05-10 18:24:46 -04:00
parent c23be46c15
commit 963f43a146

View file

@ -14,13 +14,15 @@
*/ */
#include "ptfformat.h"
#include <stdio.h> #include <stdio.h>
#include <string> #include <string>
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
#include <glib/gstdio.h>
#include "ptfformat.h"
using namespace std; using namespace std;
static const uint32_t baselut[16] = { static const uint32_t baselut[16] = {
@ -115,7 +117,7 @@ PTFFormat::load(std::string path, int64_t targetsr) {
int inv; int inv;
int err; int err;
if (! (fp = fopen(path.c_str(), "rb"))) { if (! (fp = g_fopen(path.c_str(), "rb"))) {
return -1; return -1;
} }