mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Common: readdir_r() is deprecated, switch to readdir().
This commit is contained in:
		
							parent
							
								
									722af0703e
								
							
						
					
					
						commit
						519e7013be
					
				@ -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')) ||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user