fix: close stdin before waiting for child process

This commit is contained in:
sxyazi 2024-08-11 13:13:21 +08:00
parent dac72eb39a
commit e8d51aa88c
No known key found for this signature in database

View file

@ -90,6 +90,7 @@ impl UserData for Child {
});
methods.add_async_method_mut("wait", |lua, me, ()| async move {
drop(me.stdin.take());
match me.inner.wait().await {
Ok(status) => (Status::new(status), Value::Nil).into_lua_multi(lua),
Err(e) => (Value::Nil, e.raw_os_error()).into_lua_multi(lua),
@ -111,6 +112,7 @@ impl UserData for Child {
let stdout_fut = read_to_end(&mut stdout_pipe);
let stderr_fut = read_to_end(&mut stderr_pipe);
drop(me.stdin.take());
let result = try_join3(me.inner.wait(), stdout_fut, stderr_fut).await;
drop(stdout_pipe);
drop(stderr_pipe);