From d66e7291cdb2b44846d8cc6020647f0efd715b4e Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Thu, 2 Jun 2011 21:38:54 +0000 Subject: [PATCH] Missing ifdef related to the previous patch --- Zend/zend_alloc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 48d6cb8e32..2d8d26a99f 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -2123,8 +2123,9 @@ static void *_zend_mm_realloc_int(zend_mm_heap *heap, void *p, size_t size ZEND_ size_t true_size; size_t orig_size; void *ptr; +#ifdef ZEND_SIGNALS TSRMLS_FETCH(); - +#endif if (UNEXPECTED(!p) || !ZEND_MM_VALID_PTR(p)) { return _zend_mm_alloc_int(heap, size ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC); } -- 2.50.1