Don't return a hard coded errno in vfs_fat_access

Why should the return value of vfs_fat_access be hard coded as ENOENT?
This hides errors like FR_DISK_ERR of the lower layers.
pull/8037/head
hörbert 2021-12-08 11:43:18 +01:00 zatwierdzone przez GitHub
rodzic 4143a3f572
commit ed2a21e1c7
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -865,7 +865,7 @@ static int vfs_fat_access(void* ctx, const char *path, int amode)
// it exists then it is readable and executable
} else {
ret = -1;
errno = ENOENT;
errno = fresult_to_errno(res);
}
return ret;