vlc | branch: master | Erwan Tulou <[email protected]> | Fri Jun 12 14:37:05 
2015 +0200| [369d697c91052d07aacdd11d233084cf4df4745c] | committer: Erwan Tulou

skins2: replace all fopen() with vlc_fopen()

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=369d697c91052d07aacdd11d233084cf4df4745c
---

 modules/gui/skins2/src/ft2_font.cpp     |    2 +-
 modules/gui/skins2/src/theme_loader.cpp |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/gui/skins2/src/ft2_font.cpp 
b/modules/gui/skins2/src/ft2_font.cpp
index 51a9ade..855640b 100644
--- a/modules/gui/skins2/src/ft2_font.cpp
+++ b/modules/gui/skins2/src/ft2_font.cpp
@@ -62,7 +62,7 @@ bool FT2Font::init()
         return false;
     }
 
-    FILE *file = fopen( m_name.c_str(), "rb" );
+    FILE *file = vlc_fopen( m_name.c_str(), "rb" );
     if( !file )
     {
         msg_Dbg( getIntf(), "failed to open font %s (%s)",
diff --git a/modules/gui/skins2/src/theme_loader.cpp 
b/modules/gui/skins2/src/theme_loader.cpp
index de99320..eee6219 100644
--- a/modules/gui/skins2/src/theme_loader.cpp
+++ b/modules/gui/skins2/src/theme_loader.cpp
@@ -238,7 +238,7 @@ bool ThemeLoader::extractFileInZip( unzFile file, const 
string &rootDir,
             return false;
         }
         makedir( basePath.c_str() );
-        FILE *fout = fopen( fullPath.c_str(), "wb" );
+        FILE *fout = vlc_fopen( fullPath.c_str(), "wb" );
         if( fout == NULL )
         {
             msg_Err( getIntf(), "error opening %s", fullPath.c_str() );
@@ -600,7 +600,7 @@ int tar_extract_all( TAR *t, char *prefix )
                 remaining = getoct( buffer.header.size, 12 );
                 if( !remaining ) outfile = NULL; else
                 {
-                    outfile = fopen( fname, "wb" );
+                    outfile = vlc_fopen( fname, "wb" );
                     if( outfile == NULL )
                     {
                         /* try creating directory */
@@ -610,7 +610,7 @@ int tar_extract_all( TAR *t, char *prefix )
                             *p = '\0';
                             makedir( fname );
                             *p = '/';
-                            outfile = fopen( fname, "wb" );
+                            outfile = vlc_fopen( fname, "wb" );
                             if( !outfile )
                             {
                                 fprintf( stderr, "tar couldn't create %s\n",

_______________________________________________
vlc-commits mailing list
[email protected]
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to