diff options
| -rw-r--r-- | hiredis.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -1107,7 +1107,7 @@ int redisBufferRead(redisContext *c) {      nread = read(c->fd,buf,sizeof(buf));      if (nread == -1) { -        if (errno == EAGAIN && !(c->flags & REDIS_BLOCK)) { +        if ((errno == EAGAIN && !(c->flags & REDIS_BLOCK)) || (errno == EINTR)) {              /* Try again later */          } else {              __redisSetError(c,REDIS_ERR_IO,NULL); @@ -1144,7 +1144,7 @@ int redisBufferWrite(redisContext *c, int *done) {      if (sdslen(c->obuf) > 0) {          nwritten = write(c->fd,c->obuf,sdslen(c->obuf));          if (nwritten == -1) { -            if (errno == EAGAIN && !(c->flags & REDIS_BLOCK)) { +            if ((errno == EAGAIN && !(c->flags & REDIS_BLOCK)) || (errno == EINTR)) {                  /* Try again later */              } else {                  __redisSetError(c,REDIS_ERR_IO,NULL); | 
