wasm-micro-runtime/core
TianlongLiang 64b6c688a2
posix_file.c: Correct the dirfd argument that passes to fstatat (#3244)
This PR fixes the random failing test case `nofollow_errors` mentioned in
https://github.com/bytecodealliance/wasm-micro-runtime/issues/3222

```C
// dirfd: This is the file descriptor of the directory relative to which the pathname is interpreted. 
int openat(int dirfd, const char *pathname, int flags, ...);
```
The value should be a directory handle instead of a file handle (which is always -1 in this context)
returned from `openat`.
2024-03-22 10:55:39 +08:00
..
deps Separate app-manager and app-framework from WAMR (#3129) 2024-02-20 18:12:36 +08:00
iwasm Add wasi_ephemeral_nn module support (#3241) 2024-03-21 21:05:34 +08:00
shared posix_file.c: Correct the dirfd argument that passes to fstatat (#3244) 2024-03-22 10:55:39 +08:00
config.h Add wasi_ephemeral_nn module support (#3241) 2024-03-21 21:05:34 +08:00
version.h Update version number to 1.3.2 and update release notes (#3083) 2024-02-01 12:42:12 +08:00