From: Jeffrey Altman Date: Thu, 13 Jan 2005 04:46:18 +0000 (+0000) Subject: windows-pioctl-20050112 X-Git-Tag: BP-disconnected~59 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=5a3eddc8ba75832c55e322c7189ff5f20df834fe;p=packages%2Fo%2Fopenafs.git 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. --- 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; } }