aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Zelend <ace20022@xbmc.org>2017-03-22 23:07:06 +0100
committerGitHub <noreply@github.com>2017-03-22 23:07:06 +0100
commit5ad6cea3a6cb5c0826faced9b3141e9e229d0e6f (patch)
tree5d3bfb32f485611b2b7612df0b671cdfde2caf67
parent1991ebb6c821687983484aba4e017bf4d2f1885d (diff)
parent44f7e516831db1507175bbff66e075db77072ea6 (diff)
Merge pull request #11891 from ace20022/fix_bd_iso_simp
Revert "[bluray] Early return if requested "dir" is in fact a file."
-rw-r--r--xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp b/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp
index 329fefef11..0b3e2be6fb 100644
--- a/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp
+++ b/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp
@@ -156,9 +156,6 @@ int DllLibbluray::dir_read(BD_DIR_H *dir, BD_DIRENT *entry)
BD_DIR_H *DllLibbluray::dir_open(const char* dirname)
{
- if (CFile::Exists(dirname))
- return NULL;
-
CLog::Log(LOGDEBUG, "CDVDInputStreamBluray - Opening dir %s\n", dirname);
SDirState *st = new SDirState();