From 5a3eddc8ba75832c55e322c7189ff5f20df834fe Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Thu, 13 Jan 2005 04:46:18 +0000 Subject: [PATCH] windows-pioctl-20050112 Fix a bug introduced in 1.3.75 within Tranceive(). If the file handle is invalid, be sure to return an error. --- src/sys/pioctl_nt.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sys/pioctl_nt.c b/src/sys/pioctl_nt.c index 0e409b8b6..e71f7e912 100644 --- a/src/sys/pioctl_nt.c +++ b/src/sys/pioctl_nt.c @@ -343,6 +343,8 @@ GetIoctlHandle(char *fileNamep, HANDLE * handlep) } return -1; } + } else { + return -1; } } -- 2.39.5