php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #60284
Patch php54.patch revision 2011-11-13 10:01 UTC by fedora at famillecollet dot com

Patch php54.patch for memcache Bug #60284

Patch version 2011-11-13 10:01 UTC

Return to Bug #60284 | Download this patch
Patch Revisions:

Developer: fedora@famillecollet.com

diff -up memcache-3.0.6/memcache.c.orig memcache-3.0.6/memcache.c
--- memcache-3.0.6/memcache.c.orig	2011-11-13 10:54:04.230073555 +0100
+++ memcache-3.0.6/memcache.c	2011-11-13 10:55:41.867315825 +0100
@@ -718,7 +718,11 @@ mmc_t *mmc_find_persistent(const char *h
 			mmc_server_free(mmc TSRMLS_CC);
 			mmc = NULL;
 		} else {
+#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 3) || (PHP_MAJOR_VERSION > 5)
+			zend_list_insert(mmc, le_memcache_server TSRMLS_CC);
+#else
 			zend_list_insert(mmc, le_memcache_server);
+#endif
 		}
 	}
 	else if (le->type != le_memcache_server || le->ptr == NULL) {
@@ -735,7 +739,11 @@ mmc_t *mmc_find_persistent(const char *h
 			mmc = NULL;
 		}
 		else {
+#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 3) || (PHP_MAJOR_VERSION > 5)
+			zend_list_insert(mmc, le_memcache_server TSRMLS_CC);
+#else
 			zend_list_insert(mmc, le_memcache_server);
+#endif
 		}
 	}
 	else {
@@ -775,7 +783,11 @@ static mmc_t *php_mmc_pool_addserver(
 	if (zend_hash_find(Z_OBJPROP_P(mmc_object), "connection", sizeof("connection"), (void **)&connection) == FAILURE) {
 		pool = mmc_pool_new(TSRMLS_C);
 		pool->failure_callback = &php_mmc_failure_callback;
+#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 3) || (PHP_MAJOR_VERSION > 5)
+		list_id = zend_list_insert(pool, le_memcache_pool TSRMLS_CC);
+#else
 		list_id = zend_list_insert(pool, le_memcache_pool);
+#endif
 		add_property_resource(mmc_object, "connection", list_id);
 	}
 	else {
@@ -836,7 +848,11 @@ static void php_mmc_connect(INTERNAL_FUN
 		int list_id;
 		mmc_pool_t *pool = mmc_pool_new(TSRMLS_C);
 		pool->failure_callback = &php_mmc_failure_callback;
+#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 3) || (PHP_MAJOR_VERSION > 5)
+		list_id = zend_list_insert(pool, le_memcache_pool TSRMLS_CC);
+#else
 		list_id = zend_list_insert(pool, le_memcache_pool);
+#endif
 		mmc_object = return_value;
 		object_init_ex(mmc_object, memcache_ce);
 		add_property_resource(mmc_object, "connection", list_id);
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 11:01:30 2024 UTC