derick Sun, 29 Jan 2012 11:17:07 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=322921
Log: CS fixes. Changed paths: U php/php-src/trunk/Zend/zend_alloc.c Modified: php/php-src/trunk/Zend/zend_alloc.c =================================================================== --- php/php-src/trunk/Zend/zend_alloc.c 2012-01-29 09:20:28 UTC (rev 322920) +++ php/php-src/trunk/Zend/zend_alloc.c 2012-01-29 11:17:07 UTC (rev 322921) @@ -1882,7 +1882,7 @@ size_t segment_size; zend_mm_segment *segment; int keep_rest = 0; -#ifdef ZEND_SIGNALS +#ifdef ZEND_SIGNALS TSRMLS_FETCH(); #endif @@ -2058,7 +2058,7 @@ zend_mm_block *mm_block; zend_mm_block *next_block; size_t size; -#ifdef ZEND_SIGNALS +#ifdef ZEND_SIGNALS TSRMLS_FETCH(); #endif if (!ZEND_MM_VALID_PTR(p)) { @@ -2548,7 +2548,7 @@ ZEND_API void *_ecalloc(size_t nmemb, size_t size ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) { void *p; -#ifdef ZEND_SIGNALS +#ifdef ZEND_SIGNALS TSRMLS_FETCH(); #endif HANDLE_BLOCK_INTERRUPTIONS(); @@ -2567,7 +2567,7 @@ { int length; char *p; -#ifdef ZEND_SIGNALS +#ifdef ZEND_SIGNALS TSRMLS_FETCH(); #endif @@ -2587,7 +2587,7 @@ ZEND_API char *_estrndup(const char *s, uint length ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) { char *p; -#ifdef ZEND_SIGNALS +#ifdef ZEND_SIGNALS TSRMLS_FETCH(); #endif @@ -2608,7 +2608,7 @@ ZEND_API char *zend_strndup(const char *s, uint length) { char *p; -#ifdef ZEND_SIGNALS +#ifdef ZEND_SIGNALS TSRMLS_FETCH(); #endif
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php