Skip to content

Commit c8053b1

Browse files
committed
initialize WASI stdio handles to invalid for better error handling
1 parent ff10b86 commit c8053b1

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

core/iwasm/aot/aot_loader.c

+6
Original file line numberDiff line numberDiff line change
@@ -4120,6 +4120,12 @@ create_module(char *name, char *error_buf, uint32 error_buf_size)
41204120
}
41214121
#endif
41224122

4123+
#if WASM_ENABLE_LIBC_WASI != 0
4124+
module->wasi_args.stdio[0] = os_get_invalid_handle();
4125+
module->wasi_args.stdio[1] = os_get_invalid_handle();
4126+
module->wasi_args.stdio[2] = os_get_invalid_handle();
4127+
#endif
4128+
41234129
return module;
41244130
#if WASM_ENABLE_GC != 0
41254131
fail2:

core/iwasm/interpreter/wasm_loader.c

+6
Original file line numberDiff line numberDiff line change
@@ -6368,6 +6368,12 @@ create_module(char *name, char *error_buf, uint32 error_buf_size)
63686368
}
63696369
#endif
63706370

6371+
#if WASM_ENABLE_LIBC_WASI != 0
6372+
module->wasi_args.stdio[0] = os_get_invalid_handle();
6373+
module->wasi_args.stdio[1] = os_get_invalid_handle();
6374+
module->wasi_args.stdio[2] = os_get_invalid_handle();
6375+
#endif
6376+
63716377
(void)ret;
63726378
return module;
63736379

0 commit comments

Comments
 (0)