Skip to content

Commit

Permalink
[libdvdread] add missing stat() filesystem wrapper - fixes reading VI…
Browse files Browse the repository at this point in the history
…DEO_TS dvds on Android
  • Loading branch information
Voyager1 committed May 15, 2013
1 parent f7dcf70 commit 7401bbf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions xbmc/cores/DllLoader/exports/wrapper.c
Expand Up @@ -405,6 +405,11 @@ int __wrap__stat(const char *path, struct _stat *buffer)
return dll_stat(path, buffer);
}

int __wrap_stat(const char *path, struct _stat *buffer)
{
return dll_stat(path, buffer);
}

int __wrap___xstat64(int __ver, const char *__filename, struct stat64 *__stat_buf)
{
return dll_stat64(__filename, __stat_buf);
Expand Down

0 comments on commit 7401bbf

Please sign in to comment.