Fix IRIX syscall for pathconf()

This commit is contained in:
cadmic 2024-08-06 11:29:45 -07:00
parent bad56085ca
commit 9361f765bf
2 changed files with 5 additions and 5 deletions

View File

@ -247,7 +247,7 @@
#define TARGET_NR_syssgi_setsid (20)
#define TARGET_NR_syssgi_setpgid (21)
#define TARGET_NR_syssgi_sysconf (22)
#define TARGET_NR_syssgi_pathconf (23)
#define TARGET_NR_syssgi_pathconf (24)
#define TARGET_NR_syssgi_setgroups (40)
#define TARGET_NR_syssgi_getgroups (41)
#define TARGET_NR_syssgi_settimeofday (52)

View File

@ -14527,13 +14527,13 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
}
break;
case TARGET_NR_syssgi_pathconf:
if (arg3 == 1) {
if (!(p = lock_user_string(arg1)))
if (arg4 == 1) {
if (!(p = lock_user_string(arg2)))
goto efault;
ret = get_errno(pathconf(path(p), target_to_host_pathconf(arg2)));
ret = get_errno(pathconf(path(p), target_to_host_pathconf(arg3)));
unlock_user(p, arg1, 0);
} else
ret = get_errno(fpathconf(arg1, target_to_host_pathconf(arg2)));
ret = get_errno(fpathconf(arg2, target_to_host_pathconf(arg3)));
break;
case TARGET_NR_syssgi_rusage:
{