Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed: udf:// would invalidly indicate it supported chunked reads
This causes slow performance on smb:// aswell as potentially failures
on any filesystem that indicate a chunksize smaller and not aligned
to a normal dvd sector size (doubtfullt we have any currently).
  • Loading branch information
elupus committed Feb 14, 2011
1 parent 04b4a26 commit ff3fc8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/filesystem/udf25.cpp
Expand Up @@ -370,7 +370,7 @@ static CFile* file_open(const char *target)
{
CFile* fp = new CFile();

if(!fp->Open(target, READ_CHUNKED))
if(!fp->Open(target))
{
CLog::Log(LOGERROR,"file_open - Could not open input");
delete fp;
Expand Down

0 comments on commit ff3fc8e

Please sign in to comment.