wasm-micro-runtime/core
Dylan Johnston 9d8150efae
Fix WASI Path Mapping Processing (#3923)
Filesystem paths can be mapped from the host path to a guest path using
the format `<guest-path>::<host-path>`.

Previously `strtok` was used to find the `::` delimiter. Unfortunately
`strtok` processes each delimiter character individually. This meant
that the code was ~equivalent to `strtok(mapping_copy, ":")` which
breaks with Windows-style paths (E.g. `C:\my_path\`).

To fix this `strstr` is used to search for the exact delimiter.
2024-11-24 11:31:55 +08:00
..
deps Separate app-manager and app-framework from WAMR (#3129) 2024-02-20 18:12:36 +08:00
iwasm Fix WASI Path Mapping Processing (#3923) 2024-11-24 11:31:55 +08:00
shared Support external toolchain on Windows for aot compiler (#3911) 2024-11-19 17:47:05 +08:00
config.h Bump AOT_CURRENT_VERSION for WAMR 2.x (gc, memory64) (#3880) 2024-10-29 11:26:06 +08:00
version.h Update release notes and update version to 2.2.0 (#3863) 2024-10-22 09:34:03 +08:00