mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-05 02:20:19 +00:00
update changelog; clean up
This commit is contained in:
parent
b2752735db
commit
83deae80dc
@ -6,6 +6,7 @@ Blocks of changes will separated by version increments.
|
||||
|
||||
## **[Unreleased]**
|
||||
|
||||
- [#449](https://github.com/wasmerio/wasmer/pull/449) Fix bugs: opening host files in filestat and opening with write permissions unconditionally in path_open
|
||||
- [#442](https://github.com/wasmerio/wasmer/pull/442) Misc. WASI FS fixes and implement readdir
|
||||
- [#440](https://github.com/wasmerio/wasmer/pull/440) Fix type mismatch between `wasmer_instance_call` and `wasmer_export_func_*_arity` functions in the runtime C API.
|
||||
- [#269](https://github.com/wasmerio/wasmer/pull/269) Add better runtime docs
|
||||
|
@ -1500,7 +1500,7 @@ pub fn path_open(
|
||||
let real_opened_file = {
|
||||
let mut open_options = std::fs::OpenOptions::new();
|
||||
let open_options = open_options.read(true);
|
||||
let open_options = if dbg!(fs_rights_base & __WASI_RIGHT_FD_WRITE) != 0 {
|
||||
let open_options = if fs_rights_base & __WASI_RIGHT_FD_WRITE != 0 {
|
||||
open_options.write(true)
|
||||
} else {
|
||||
open_options
|
||||
|
Loading…
Reference in New Issue
Block a user