diff --git a/README.md b/README.md index de9ff28e..747117c3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Redis on Windows 2.6 prototype +Redis on Windows 2.6 prototype === ## What's new in this release diff --git a/msvs/bin/debug/redisbin.zip b/msvs/bin/debug/redisbin.zip index 23ec7e13..f4e670ad 100644 Binary files a/msvs/bin/debug/redisbin.zip and b/msvs/bin/debug/redisbin.zip differ diff --git a/msvs/bin/debug/redisbin64.zip b/msvs/bin/debug/redisbin64.zip index fa1f906c..2acfb037 100644 Binary files a/msvs/bin/debug/redisbin64.zip and b/msvs/bin/debug/redisbin64.zip differ diff --git a/msvs/bin/release/redisbin.zip b/msvs/bin/release/redisbin.zip index 554765fa..64fb6fd8 100644 Binary files a/msvs/bin/release/redisbin.zip and b/msvs/bin/release/redisbin.zip differ diff --git a/msvs/bin/release/redisbin64.zip b/msvs/bin/release/redisbin64.zip index 7be9ee92..99a08edc 100644 Binary files a/msvs/bin/release/redisbin64.zip and b/msvs/bin/release/redisbin64.zip differ diff --git a/src/networking.c b/src/networking.c index b8678737..267b0bdc 100644 --- a/src/networking.c +++ b/src/networking.c @@ -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)