Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
hiredis
Commits
b3290392
Commit
b3290392
authored
Jul 10, 2011
by
Pieter Noordhuis
Browse files
Put back missing socket error check after select(2)
parent
b5219397
Changes
1
Hide whitespace changes
Inline
Side-by-side
net.c
View file @
b3290392
...
...
@@ -141,6 +141,9 @@ static int redisContextWaitReady(redisContext *c, int fd, const struct timeval *
return
REDIS_ERR
;
}
if
(
redisCheckSocketError
(
c
,
fd
)
!=
REDIS_OK
)
return
REDIS_ERR
;
return
REDIS_OK
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment