[libdvdread] add missing stat() filesystem wrapper - fixes reading VIDEO_TS dvds...
authorVoyager1 <voyager@xbmc.org>
Wed, 15 May 2013 17:51:47 +0000 (19:51 +0200)
committerVoyager1 <voyager@xbmc.org>
Wed, 15 May 2013 17:59:56 +0000 (19:59 +0200)
xbmc/cores/DllLoader/exports/wrapper.c

index cb7bbf7..44b4048 100644 (file)
@@ -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);