| 290 | } |
| 291 | |
| 292 | static void __redisRunPushCallback(redisAsyncContext *ac, redisReply *reply) { |
| 293 | if (ac->push_cb != NULL) { |
| 294 | ac->c.flags |= REDIS_IN_CALLBACK; |
| 295 | ac->push_cb(ac, reply); |
| 296 | ac->c.flags &= ~REDIS_IN_CALLBACK; |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | /* Helper function to free the context. */ |
| 301 | static void __redisAsyncFree(redisAsyncContext *ac) { |
no outgoing calls
no test coverage detected