summaryrefslogtreecommitdiffhomepage
path: root/src/pty
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-07-06 01:34:20 -0400
committermidipix <writeonce@midipix.org>2016-07-06 01:50:11 -0400
commit54abedf993470fd41b5defeb7c15115ed22bce98 (patch)
treed5f83c2cf53ce2b0b8da6ec1459d44baa00d5ebb /src/pty
parent45c7e6dc6db2dad59135d525b0a2fb3fa26a538d (diff)
downloadntapi-54abedf993470fd41b5defeb7c15115ed22bce98.tar.bz2
ntapi-54abedf993470fd41b5defeb7c15115ed22bce98.tar.xz
__ntapi_pty_open(): properly set the context's hpty member when opening a pts.
Diffstat (limited to 'src/pty')
-rw-r--r--src/pty/ntapi_pty_fd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pty/ntapi_pty_fd.c b/src/pty/ntapi_pty_fd.c
index 8e6110d..58116df 100644
--- a/src/pty/ntapi_pty_fd.c
+++ b/src/pty/ntapi_pty_fd.c
@@ -222,6 +222,7 @@ int32_t __stdcall __ntapi_pty_open(
/* pts */
if (obj_attr->root_dir) {
+ ctx->hpty = ((nt_pty *)obj_attr->root_dir)->hpty;
ctx->luid.high = ((nt_pty *)obj_attr->root_dir)->luid.high;
ctx->luid.low = ((nt_pty *)obj_attr->root_dir)->luid.low;
}