Skip to content

Commit 2eeaa5c

Browse files
cjihrigcodebytere
authored andcommitted
deps: uvwasi: cherry-pick 7b5b6f9
Original commit message: allow windows to detect tty types uv_fs_fstat() fails on TTYs on Windows. This commit updates uvwasi__get_filetype_by_fd() to detect this case and map the fd to the WASI character device type. Refs: #31461 Fixes: #31461 PR-URL: #31495 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent 3046648 commit 2eeaa5c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

deps/uvwasi/src/uv_mapping.c

+8-1
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,15 @@ uvwasi_errno_t uvwasi__get_filetype_by_fd(uv_file fd, uvwasi_filetype_t* type) {
249249

250250
r = uv_fs_fstat(NULL, &req, fd, NULL);
251251
if (r != 0) {
252-
*type = UVWASI_FILETYPE_UNKNOWN;
253252
uv_fs_req_cleanup(&req);
253+
254+
/* Windows can't stat a TTY. */
255+
if (uv_guess_handle(fd) == UV_TTY) {
256+
*type = UVWASI_FILETYPE_CHARACTER_DEVICE;
257+
return UVWASI_ESUCCESS;
258+
}
259+
260+
*type = UVWASI_FILETYPE_UNKNOWN;
254261
return uvwasi__translate_uv_error(r);
255262
}
256263

0 commit comments

Comments
 (0)