diff options
author | Sascha Schumann <sas@php.net> | 2001-07-23 04:21:11 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-07-23 04:21:11 +0000 |
commit | b677af22650f6bb6ffe3f6695bacaa5c25591b7d (patch) | |
tree | 373e1a39a02fea306c9065f3c71fe144eb77ec52 /Zend/zend_alloc.c | |
parent | 28ecbb213c13cbb38950f29ddc60bdee0e6781f7 (diff) | |
download | php-git-b677af22650f6bb6ffe3f6695bacaa5c25591b7d.tar.gz |
tsrm_error is only available, if TSRM_DEBUG is defined.
Diffstat (limited to 'Zend/zend_alloc.c')
-rw-r--r-- | Zend/zend_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 74c4808f82..42bc335a9b 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -268,7 +268,7 @@ ZEND_API void *_erealloc(void *ptr, size_t size, int allow_failure ZEND_FILE_LIN p = orig = (zend_mem_header *) ((char *)ptr-sizeof(zend_mem_header)-MEM_HEADER_PADDING); -#if defined(ZTS) && ZEND_DEBUG +#if defined(ZTS) && TSRM_DEBUG if (p->thread_id != tsrm_thread_id()) { void *new_p; |