]> git.proxmox.com Git - wasi-libc.git/commit
Fix missing errno assignments.
authorDan Gohman <dev@sunfishcode.online>
Thu, 6 Oct 2022 18:48:54 +0000 (11:48 -0700)
committerDan Gohman <dev@sunfishcode.online>
Thu, 6 Oct 2022 21:19:26 +0000 (14:19 -0700)
commit099caae3eb9111a67d2f0e1b4f9f5f98e682482a
tree86e6fe90e375af209e01b384567162d9735ffd96
parenta02298043ff551ce1157bc2ee7ab74c3bffe7144
Fix missing errno assignments.

In PR #294 I removed a little too much code; we still need to assign to
`errno` in the code in question here.
14 files changed:
libc-bottom-half/cloudlibc/src/libc/dirent/fdopendir.c
libc-bottom-half/cloudlibc/src/libc/fcntl/openat.c
libc-bottom-half/cloudlibc/src/libc/stdio/renameat.c
libc-bottom-half/cloudlibc/src/libc/sys/socket/recv.c
libc-bottom-half/cloudlibc/src/libc/sys/socket/send.c
libc-bottom-half/cloudlibc/src/libc/sys/socket/shutdown.c
libc-bottom-half/cloudlibc/src/libc/sys/stat/fstatat.c
libc-bottom-half/cloudlibc/src/libc/sys/stat/mkdirat.c
libc-bottom-half/cloudlibc/src/libc/sys/stat/utimensat.c
libc-bottom-half/cloudlibc/src/libc/unistd/faccessat.c
libc-bottom-half/cloudlibc/src/libc/unistd/linkat.c
libc-bottom-half/cloudlibc/src/libc/unistd/readlinkat.c
libc-bottom-half/cloudlibc/src/libc/unistd/symlinkat.c
libc-bottom-half/sources/__wasilibc_rmdirat.c