Browse Source

Missing ifdef related to the previous patch

pull/7/head
Ilia Alshanetsky 15 years ago
parent
commit
d66e7291cd
  1. 3
      Zend/zend_alloc.c

3
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);
}

Loading…
Cancel
Save