summaryrefslogtreecommitdiffstats
path: root/php-5.4.34-bug63595.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-11-14 07:53:35 +0100
committerRemi Collet <fedora@famillecollet.com>2014-11-14 07:53:35 +0100
commitd87094c89d6cc6e6822c2d9d706c1735f6fd0358 (patch)
treefcfe90e33b5c7d3d7c1540f22ca68058ca4325b0 /php-5.4.34-bug63595.patch
parentef4877a7043e5f6f00ba0142c18be7e4003c3b02 (diff)
PHP 5.4.35
Diffstat (limited to 'php-5.4.34-bug63595.patch')
-rw-r--r--php-5.4.34-bug63595.patch72
1 files changed, 0 insertions, 72 deletions
diff --git a/php-5.4.34-bug63595.patch b/php-5.4.34-bug63595.patch
deleted file mode 100644
index 7df8438..0000000
--- a/php-5.4.34-bug63595.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-From 3c925b18fa96043e5d7e86f9ce544b143c3c2079 Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@php.net>
-Date: Mon, 27 Oct 2014 07:45:34 +0100
-Subject: [PATCH] Fix bug #63595 GMP memory management conflicts with other
- libraries using GMP
-
-Drop use of php memory allocators as this raise various conflicts
-with other extensions and libraries which use libgmp.
-
-No other solution found.
-We cannot for ensure correct use of allocator with shared lib.
-
-Some memory can allocated before php init
-Some memory can be freed after php shutdown
-
-Known broken run cases
-- php + curl + gnutls + gmp
-- mod_gnutls + mod_php + gnutls + gmp
-- php + freetds + gnutls + gmp
-- php + odbc + freetds + gnutls + gmp
-- php + php-mapi (zarafa) + gnutls + gmp
----
- ext/gmp/gmp.c | 26 --------------------------
- 1 file changed, 26 deletions(-)
-
-diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c
-index f51bd8c..b1553fa 100644
---- a/ext/gmp/gmp.c
-+++ b/ext/gmp/gmp.c
-@@ -324,30 +324,6 @@ static void _php_gmpnum_free(zend_rsrc_list_entry *rsrc TSRMLS_DC);
- # define MAX_BASE 36
- #endif
-
--/* {{{ gmp_emalloc
-- */
--static void *gmp_emalloc(size_t size)
--{
-- return emalloc(size);
--}
--/* }}} */
--
--/* {{{ gmp_erealloc
-- */
--static void *gmp_erealloc(void *ptr, size_t old_size, size_t new_size)
--{
-- return erealloc(ptr, new_size);
--}
--/* }}} */
--
--/* {{{ gmp_efree
-- */
--static void gmp_efree(void *ptr, size_t size)
--{
-- efree(ptr);
--}
--/* }}} */
--
- /* {{{ ZEND_GINIT_FUNCTION
- */
- static ZEND_GINIT_FUNCTION(gmp)
-@@ -369,8 +345,6 @@ ZEND_MODULE_STARTUP_D(gmp)
- #endif
- REGISTER_STRING_CONSTANT("GMP_VERSION", (char *)gmp_version, CONST_CS | CONST_PERSISTENT);
-
-- mp_set_memory_functions(gmp_emalloc, gmp_erealloc, gmp_efree);
--
- return SUCCESS;
- }
- /* }}} */
---
-2.1.0
-