summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/pty/ntapi_pty_fd.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/pty/ntapi_pty_fd.c b/src/pty/ntapi_pty_fd.c
index a2701a9..ed97418 100644
--- a/src/pty/ntapi_pty_fd.c
+++ b/src/pty/ntapi_pty_fd.c
@@ -273,8 +273,19 @@ int32_t __stdcall __ntapi_pty_inherit(
ctx->luid.low = inherit.luid.low;
ctx->luid.high = inherit.luid.high;
- if ((status = __ntapi_pty_connect(hport,ctx,&iosb)))
+ if ((status = __ntapi_pty_connect(hport,ctx,&iosb))) {
+ __ntapi_pty_free(ctx);
return status;
+ }
+
+ if ((status = __ntapi_pty_set(
+ ctx,&iosb,
+ client_info,
+ sizeof(*client_info),
+ NT_PTY_CLIENT_INFORMATION))) {
+ __ntapi_pty_free(ctx);
+ return status;
+ }
*pty = ctx;