s/relay_/redis_/g

This commit is contained in:
michael-grunder
2026-02-19 10:02:34 -08:00
committed by Michael Grunder
parent 481f12f84c
commit 741abf09ec
+3 -3
View File
@@ -250,7 +250,7 @@ redis_sock_free_auth(RedisSock *redis_sock) {
}
#if PHP_VERSION_ID < 80000
static void relay_array_release(HashTable *ht) {
static void redis_array_release(HashTable *ht) {
if (!ht || (GC_FLAGS(ht) & GC_IMMUTABLE)) {
return;
}
@@ -260,7 +260,7 @@ static void relay_array_release(HashTable *ht) {
}
}
#else
static inline void relay_array_release(HashTable *ht) {
static inline void redis_array_release(HashTable *ht) {
zend_array_release(ht);
}
#endif
@@ -270,7 +270,7 @@ void redis_sock_free_context(RedisSock *redis_sock) {
if (redis_sock->context == NULL)
return;
relay_array_release(redis_sock->context);
redis_array_release(redis_sock->context);
redis_sock->context = NULL;
}