This commit is contained in:
Nekotekina 2015-04-26 02:29:53 +03:00
parent ff359ed118
commit e676d0bdcf

View File

@ -755,7 +755,7 @@ bool fs::dir::get_next(std::string& name, stat_t& info)
const auto found = ::readdir((DIR*)m_dd);
struct stat64 file_info;
if (fstatat64(::dirfd((DIR*)m_dd), found->d_name, &file_info, 0) < 0)
if (!found || fstatat64(::dirfd((DIR*)m_dd), found->d_name, &file_info, 0) < 0)
{
return false;
}