Improve non blocking opening and closing of sockets

This commit is contained in:
Henry Rawas
2013-07-21 12:42:09 -07:00
committed by JonathanPickett
parent cb85f493cb
commit 89cae3d62e
6 changed files with 1 additions and 4 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
Redis on Windows 2.6 prototype
Redis on Windows 2.6 prototype
===
## What's new in this release
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-3
View File
@@ -635,9 +635,6 @@ void freeClient(redisClient *c) {
* unblockClientWaitingData() to avoid processInputBuffer() will get
* called. Also it is important to remove the file events after
* this, because this call adds the READABLE event. */
#ifdef _WIN32
aeWinSocketDetach(c->fd, 1);
#endif
sdsfree(c->querybuf);
c->querybuf = NULL;
if (c->flags & REDIS_BLOCKED)