From f7f484bcca664de571a8cebdc6021c4119d79576 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Mon, 31 Jan 2005 04:09:37 +0000 Subject: [PATCH] STABLE14-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. (cherry picked from commit 5a3eddc8ba75832c55e322c7189ff5f20df834fe) --- 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