diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2016-09-13 19:54:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-13 19:54:42 +0200 |
commit | 81bb315839a95998fe20fdcdb5cee0f161335185 (patch) | |
tree | 95636e7ad5796e64b0e0318189e9f47b4f762448 /src | |
parent | Merge pull request #2069 from wwylele/fix-birthday (diff) | |
parent | Common: readdir_r() is deprecated, switch to readdir(). (diff) | |
download | yuzu-81bb315839a95998fe20fdcdb5cee0f161335185.tar yuzu-81bb315839a95998fe20fdcdb5cee0f161335185.tar.gz yuzu-81bb315839a95998fe20fdcdb5cee0f161335185.tar.bz2 yuzu-81bb315839a95998fe20fdcdb5cee0f161335185.tar.lz yuzu-81bb315839a95998fe20fdcdb5cee0f161335185.tar.xz yuzu-81bb315839a95998fe20fdcdb5cee0f161335185.tar.zst yuzu-81bb315839a95998fe20fdcdb5cee0f161335185.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/file_util.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 84fe95c8c..bc83ab737 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -457,14 +457,12 @@ bool ForeachDirectoryEntry(unsigned* num_entries_out, const std::string &directo do { const std::string virtual_name(Common::UTF16ToUTF8(ffd.cFileName)); #else - struct dirent dirent, *result = nullptr; - DIR *dirp = opendir(directory.c_str()); if (!dirp) return false; // non windows loop - while (!readdir_r(dirp, &dirent, &result) && result) { + while (struct dirent* result = readdir(dirp)) { const std::string virtual_name(result->d_name); #endif @@ -560,12 +558,10 @@ void CopyDir(const std::string &source_path, const std::string &dest_path) if (!FileUtil::Exists(source_path)) return; if (!FileUtil::Exists(dest_path)) FileUtil::CreateFullPath(dest_path); - struct dirent dirent, *result = nullptr; DIR *dirp = opendir(source_path.c_str()); if (!dirp) return; - while (!readdir_r(dirp, &dirent, &result) && result) - { + while (struct dirent* result = readdir(dirp)) { const std::string virtualName(result->d_name); // check for "." and ".." if (((virtualName[0] == '.') && (virtualName[1] == '\0')) || |