Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2020-05-17 23:19:01 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2020-05-17 23:19:01 +0300
commit508fef6f18c8ee7e57ff6fc45697248c0bd72709 (patch)
tree85bba0de84bcf864456146263f8b1ba5efef3959 /redis.c
parent215828e3474dfd9ea72fdc6da67aa6bee2d95ddf (diff)
Remove unused PHP_MSHUTDOWN_FUNCTION
Diffstat (limited to 'redis.c')
-rw-r--r--redis.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/redis.c b/redis.c
index 2e0aaff1..729bcf9b 100644
--- a/redis.c
+++ b/redis.c
@@ -500,7 +500,7 @@ zend_module_entry redis_module_entry = {
"redis",
NULL,
PHP_MINIT(redis),
- PHP_MSHUTDOWN(redis),
+ NULL,
NULL,
NULL,
PHP_MINFO(redis),
@@ -827,14 +827,6 @@ PHP_MINIT_FUNCTION(redis)
return SUCCESS;
}
-/**
- * PHP_MSHUTDOWN_FUNCTION
- */
-PHP_MSHUTDOWN_FUNCTION(redis)
-{
- return SUCCESS;
-}
-
static const char *
get_available_serializers(void)
{