Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | MFH: fix #40800 (cannot disable memory_limit with -1) | Antony Dovgal | 2007-03-14 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #40770 (Apache child exits when PHP memory limit reached) | Dmitry Stogov | 2007-03-12 | 1 | -0/+3 | |
| | ||||||
* | MFH: declare zend_mm_random() only when needed | Antony Dovgal | 2007-03-06 | 1 | -0/+2 | |
| | ||||||
* | MFH: fix heap protection on SPARC, required by GCC4 | Antony Dovgal | 2007-02-19 | 1 | -3/+3 | |
| | | | | | patch by Dmitry | |||||
* | fix typo | Antony Dovgal | 2007-02-16 | 1 | -1/+1 | |
| | ||||||
* | add safe_realloc | Stanislav Malyshev | 2007-02-16 | 1 | -0/+52 | |
| | ||||||
* | Enable canary protection in DEBUG mode only. | Dmitry Stogov | 2007-02-01 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #40076 (zend_alloc.c: Value of enumeration constant must be in ↵ | Dmitry Stogov | 2007-01-09 | 1 | -9/+7 | |
| | | | | range of signed integer) | |||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 | |
| | ||||||
* | Fixed possible size_t overflow | Dmitry Stogov | 2006-12-25 | 1 | -6/+17 | |
| | ||||||
* | Make MEMORY_LIMIT and ZEND_USE_MALLOC_MM to be always enabled. They don't ↵ | Dmitry Stogov | 2006-12-20 | 1 | -74/+9 | |
| | | | | make any significant slowdown, but incrise maintainability a lot. Note that the setting of memory_limit wasn't changes (neither in main/main.c nor in php.ini) and it still set to 16M. | |||||
* | Fixed random generation of cookies and canaries | Dmitry Stogov | 2006-12-18 | 1 | -24/+57 | |
| | ||||||
* | MFH: __builtin_expect() exists only in GCC 3.0 and higher | Dmitry Stogov | 2006-12-18 | 1 | -1/+1 | |
| | ||||||
* | - I prefer cookie to be the first element. | Andi Gutmans | 2006-12-15 | 1 | -2/+2 | |
| | ||||||
* | Added internal heap protection | Dmitry Stogov | 2006-12-15 | 1 | -95/+254 | |
| | | | | | | | . safe unlinking . cookies . canary protection (debug build only) | |||||
* | Fixed possible failure | Dmitry Stogov | 2006-12-08 | 1 | -5/+4 | |
| | ||||||
* | Fixed bug #38274 (Memlimit fatal error sent to "wrong" stderr when using ↵ | Dmitry Stogov | 2006-12-04 | 1 | -4/+33 | |
| | | | | fastcgi) | |||||
* | Bug #39438 (Fatal error: Out of memory) | Dmitry Stogov | 2006-12-01 | 1 | -11/+11 | |
| | ||||||
* | typo | Dmitry Stogov | 2006-12-01 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #39702 (php crashes in the allocator on linux-m68k) | Dmitry Stogov | 2006-12-01 | 1 | -0/+7 | |
| | ||||||
* | Fixed bug #39640 (Segfault with "Allowed memory size exhausted") | Dmitry Stogov | 2006-12-01 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #39652 (Wrong negative results from memeory_get_usage()) | Dmitry Stogov | 2006-12-01 | 1 | -15/+29 | |
| | ||||||
* | Fixed bug #39534 (Error in maths to calculate of ↵ | Dmitry Stogov | 2006-11-23 | 1 | -1/+11 | |
| | | | | ZEND_MM_ALIGNED_MIN_HEADER_SIZE). (wharmby at uk dot ibm dot com) | |||||
* | Fixed incorrect heap corruptiuon detection code | Dmitry Stogov | 2006-11-13 | 1 | -8/+9 | |
| | ||||||
* | Zend Memory Manager Improvements | Dmitry Stogov | 2006-11-10 | 1 | -20/+26 | |
| | | | | | | . use HeapAlloc() instead of VirtualAlloc() . use "win32" storage manager (instead of "malloc") on Windows by default | |||||
* | Make zend_memory_peak_usage() to be avalable even without --enable-memory-limit | Dmitry Stogov | 2006-10-12 | 1 | -2/+4 | |
| | ||||||
* | Added safety checks against integer overflow. | Ilia Alshanetsky | 2006-09-30 | 1 | -3/+2 | |
| | ||||||
* | Added is_zend_mm() to allow runtime check for zend memory manager | Dmitry Stogov | 2006-09-14 | 1 | -0/+9 | |
| | ||||||
* | Show name of storage layer in case of initialization fault. | Dmitry Stogov | 2006-08-31 | 1 | -1/+1 | |
| | ||||||
* | s/pinter/pointer/ | Antony Dovgal | 2006-08-30 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #38265 (heap corruption) | Dmitry Stogov | 2006-08-23 | 1 | -21/+41 | |
| | ||||||
* | Fixed "win32" storage manager | Dmitry Stogov | 2006-08-22 | 1 | -12/+15 | |
| | ||||||
* | Fixed crash of DEBUG version on SPARC CPU because of unaligned pointers. | Dmitry Stogov | 2006-07-26 | 1 | -4/+5 | |
| | ||||||
* | Changed memory_get_usage() and memory_get_peak_usage(). Optional boolean ↵ | Dmitry Stogov | 2006-07-25 | 1 | -22/+61 | |
| | | | | argument allows get memory size allocated by emalloc() (by default) or real size of memory allocated from system. | |||||
* | Fixed memory leaks detection | Dmitry Stogov | 2006-07-24 | 1 | -1/+1 | |
| | ||||||
* | MFH: fix build on platforms without mremap() | Antony Dovgal | 2006-07-18 | 1 | -1/+2 | |
| | ||||||
* | New memory manager | Dmitry Stogov | 2006-07-18 | 1 | -555/+1580 | |
| | ||||||
* | - Update copyright notices to 2006 | Andi Gutmans | 2006-01-04 | 1 | -1/+1 | |
| | ||||||
* | MFH:- Include timestamp for the leaks. (to make possible matching leaks with ↵ | foobar | 2005-12-12 | 1 | -0/+1 | |
| | | | | access_log entries) | |||||
* | MFH: Fixed bug #34156 (memory usage remains elevated after memory limit is | Ilia Alshanetsky | 2005-08-18 | 1 | -1/+2 | |
| | | | | | reached); | |||||
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 | |
| | ||||||
* | - Nuke the code duplication | foobar | 2005-04-07 | 1 | -10/+0 | |
| | ||||||
* | Fix strdup() bug when USE_ZEND_ALLOC is disabled | Zeev Suraski | 2005-04-07 | 1 | -0/+9 | |
| | ||||||
* | - Fix leak report for 0 byte allocations (Dmitry) | Andi Gutmans | 2004-08-27 | 1 | -1/+1 | |
| | ||||||
* | - Improve performance by inlining zend_ptr_stack_n_push(). var_args can | Andi Gutmans | 2004-07-30 | 1 | -1/+0 | |
| | | | | | usually not be inlined by compilers. | |||||
* | - Add safe_pemalloc() | Moriyoshi Koizumi | 2004-07-20 | 1 | -0/+24 | |
| | ||||||
* | - Improve performance of zend_alloc by stopping the size from being a bit | Andi Gutmans | 2004-07-15 | 1 | -32/+23 | |
| | | | | | - field. | |||||
* | - Better stability during premature shutdown of request startup | Andi Gutmans | 2004-07-10 | 1 | -1/+1 | |
| | ||||||
* | - Should fix mem leak with ZEND_MM. I made this change a while ago and | Andi Gutmans | 2004-07-03 | 1 | -2/+5 | |
| | | | | | - rolled it back but I don't remember why. Please test! | |||||
* | - Fix memory manager problem | Andi Gutmans | 2004-05-26 | 1 | -4/+2 | |
| |