Commit 49c72956 authored by Erwan Tulou's avatar Erwan Tulou

skins2: replace all stat() with vlc_stat()

parent 369d697c
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include <vlc_url.h> #include <vlc_url.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <vlc_fs.h>
XMLParser::XMLParser( intf_thread_t *pIntf, const string &rFileName ) XMLParser::XMLParser( intf_thread_t *pIntf, const string &rFileName )
: SkinObject( pIntf ), m_pXML( NULL ), m_pReader( NULL ), m_pStream( NULL ) : SkinObject( pIntf ), m_pXML( NULL ), m_pReader( NULL ), m_pStream( NULL )
...@@ -84,7 +85,7 @@ void XMLParser::LoadCatalog() ...@@ -84,7 +85,7 @@ void XMLParser::LoadCatalog()
for( it = resPath.begin(); it != resPath.end(); ++it ) for( it = resPath.begin(); it != resPath.end(); ++it )
{ {
string catalog_path = (*it) + sep + "skin.catalog"; string catalog_path = (*it) + sep + "skin.catalog";
if( !stat( catalog_path.c_str(), &statBuf ) ) if( !vlc_stat( catalog_path.c_str(), &statBuf ) )
{ {
msg_Dbg( getIntf(), "Using catalog %s", catalog_path.c_str() ); msg_Dbg( getIntf(), "Using catalog %s", catalog_path.c_str() );
xml_CatalogLoad( m_pXML, catalog_path.c_str() ); xml_CatalogLoad( m_pXML, catalog_path.c_str() );
...@@ -100,7 +101,7 @@ void XMLParser::LoadCatalog() ...@@ -100,7 +101,7 @@ void XMLParser::LoadCatalog()
for( it = resPath.begin(); it != resPath.end(); ++it ) for( it = resPath.begin(); it != resPath.end(); ++it )
{ {
string path = (*it) + sep + "skin.dtd"; string path = (*it) + sep + "skin.dtd";
if( !stat( path.c_str(), &statBuf ) ) if( !vlc_stat( path.c_str(), &statBuf ) )
{ {
// DTD found // DTD found
msg_Dbg( getIntf(), "using DTD %s", path.c_str() ); msg_Dbg( getIntf(), "using DTD %s", path.c_str() );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment