summaryrefslogtreecommitdiff
path: root/src/socketengine_iocp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/socketengine_iocp.cpp')
-rw-r--r--src/socketengine_iocp.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/socketengine_iocp.cpp b/src/socketengine_iocp.cpp
index 3581904ed..4eb9f83cd 100644
--- a/src/socketengine_iocp.cpp
+++ b/src/socketengine_iocp.cpp
@@ -456,15 +456,16 @@ bool IOCPEngine::HasFd(int fd)
bool IOCPEngine::BoundsCheckFd(EventHandler* eh)
{
- int* fake_fd = NULL;
- if (!eh)
- return false;
- if (!eh->GetExt("internal_fd", fake_fd))
+ int * internal_fd;
+ if (!eh || eh->GetFd() < 0)
return false;
- if ((*fake_fd < 0) || (*fake_fd > MAX_DESCRIPTORS))
+
+ if(!eh->GetExt("internal_fd", internal_fd))
return false;
- if ((eh->GetFd() < 0) || (eh->GetFd() > MAX_DESCRIPTORS))
+
+ if(*internal_fd > MAX_DESCRIPTORS)
return false;
+
return true;
}