This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
823
Wiki
Activity
Browse Source
pipelined redis commands may also fail, handle it
git.mgm/mediaproxy-ng/2.0
Richard Fuchs
14 years ago
parent
e3d9134ae4
commit
c054124217
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
daemon/redis.c
+ 2
- 2
daemon/redis.c
View File
@ -73,8 +73,8 @@ static void redis_consume(struct redis *r, int count) {
redisReply
*
rp
;
while
(
count
-
-
>
0
)
{
redisGetReply
(
r
-
>
ctx
,
(
void
*
*
)
&
rp
)
;
freeReplyObject
(
rp
)
;
if
(
redisGetReply
(
r
-
>
ctx
,
(
void
*
*
)
&
rp
)
=
=
REDIS_OK
)
freeReplyObject
(
rp
)
;
}
}
Write
Preview
Loading…
Cancel
Save