mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
Refine error in fsdev_mount_device
This commit is contained in:
parent
b2c82c75d0
commit
bf94bf48d2
1 changed files with 2 additions and 2 deletions
|
@ -85,11 +85,11 @@ int fsdev_mount_device(const char *name, unsigned int id) {
|
|||
strcpy(drname, name);
|
||||
strcat(drname, ":");
|
||||
|
||||
if (id >= FF_VOLUMES) {
|
||||
if (id >= FF_VOLUMES || name[0] == '\0') {
|
||||
errno = EINVAL;
|
||||
return -1;
|
||||
}
|
||||
if (name[0] == '\0' || strlen(name) > 32) {
|
||||
if (strlen(name) > 32) {
|
||||
errno = ENAMETOOLONG;
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue