Consistently use g_fopen()

It handles the correct encoding on win32
This commit is contained in:
TingPing 2015-02-28 06:47:40 -05:00
parent a5584c6b57
commit d78db5070a
1 changed files with 1 additions and 1 deletions

View File

@ -1347,7 +1347,7 @@ hexchat_fopen_file (const char *file, const char *mode, int xof_flags)
FILE *fh;
if (xof_flags & XOF_FULLPATH)
return fopen (file, mode);
return g_fopen (file, mode);
buf = g_build_filename (get_xdir (), file, NULL);
fh = g_fopen (buf, mode);