Dmitry Stogov
|
3d17219cd8
|
Refactored zend_hash_* iteration API zend_hash_fove_forward_ex(ht, pos) and family require second argument to be real pointer.
&(ht)->nInternalPointer should be passed instead of NULL.
zend_hash_update_current_key() may work only with internal pointer.
|
2014-04-07 23:14:17 +04:00 |
|
Dmitry Stogov
|
76cc99fe60
|
Refactored ZVAL flags usage to simplify various checks (e.g. Z_REFCOUNTED(), candidate for GC, etc)
|
2014-04-03 15:26:23 +04:00 |
|
Dmitry Stogov
|
d8099d0468
|
Changed data layout to allow more efficient operations
|
2014-04-02 14:34:44 +04:00 |
|
Dmitry Stogov
|
6b2ed577fd
|
Avoid unnecessry reallocations
|
2014-04-01 22:36:17 +04:00 |
|
Dmitry Stogov
|
ea85451b65
|
Refactored data structures to keep zend_object* instead of a whole zval in some places
|
2014-03-28 02:11:22 +04:00 |
|
Dmitry Stogov
|
54d559d893
|
Replaced (Z_TYPE(x) == IS_REFERENCE) with (Z_ISREF(x))
|
2014-03-27 11:50:45 +04:00 |
|
Dmitry Stogov
|
887189ca31
|
Refactored IS_INDIRECT usage for CV and object properties to support HashTable resizing
|
2014-03-26 18:07:31 +04:00 |
|
Dmitry Stogov
|
76cd829efd
|
Fixed double free
|
2014-03-19 17:00:58 +04:00 |
|
Dmitry Stogov
|
811a523c30
|
Fixed error logging with date
|
2014-03-18 01:32:03 +04:00 |
|
Dmitry Stogov
|
53a63dbd7d
|
Fixed stream notifier
|
2014-03-18 00:08:50 +04:00 |
|
Dmitry Stogov
|
aa5f55306b
|
Refactored EG(active_symbol_table) to be zend_array* instead of HashTable*
|
2014-03-17 23:15:22 +04:00 |
|
Dmitry Stogov
|
51494f252f
|
Don't include trailing zero into hash caclculation
|
2014-03-14 15:35:57 +04:00 |
|
Dmitry Stogov
|
f0989e332f
|
Fixed char*/zend_string* inconsistency
|
2014-03-07 18:23:57 +04:00 |
|
Xinchen Hui
|
be6e417fdc
|
Fixed memory leak (double array_init)
|
2014-03-07 17:48:54 +08:00 |
|
Xinchen Hui
|
c2933c234c
|
Fixed invalid pointer usage (tests/output/ob_start_callbacks.phpt)
|
2014-03-07 16:49:01 +08:00 |
|
Xinchen Hui
|
7c623c0e89
|
Fixed asseration failed in ob_get_status
|
2014-03-07 15:12:52 +08:00 |
|
Dmitry Stogov
|
9ae9460bd0
|
Fixed refcounting
|
2014-03-06 13:32:26 +04:00 |
|
Xinchen Hui
|
8218ab7724
|
Fixed memory leak
|
2014-03-05 14:43:20 +08:00 |
|
Xinchen Hui
|
d6d28458d5
|
Fixed unlink file
|
2014-03-05 14:40:49 +08:00 |
|
Xinchen Hui
|
f76a64fd3a
|
Fixed variable name register
|
2014-03-05 14:20:47 +08:00 |
|
Xinchen Hui
|
1c42751316
|
Refactor stream_get_record to return zend_string
|
2014-03-05 11:41:21 +08:00 |
|
Xinchen Hui
|
2cdc90bd94
|
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2
|
2014-03-05 11:30:51 +08:00 |
|
Xinchen Hui
|
1a828f42ea
|
Fixed stream_cast
|
2014-03-05 11:28:31 +08:00 |
|
Dmitry Stogov
|
19670c2bbc
|
Fixied calling object closures from internal functions
|
2014-03-05 01:54:21 +04:00 |
|
Xinchen Hui
|
4358e4b7cd
|
Fixed base64decode usage
|
2014-03-04 20:08:06 +08:00 |
|
Xinchen Hui
|
bab58ab97e
|
Fixed stream_select (incompeleted)
|
2014-03-04 19:12:43 +08:00 |
|
Xinchen Hui
|
d28af8ef3d
|
Fixed wrapper errors realted tests
|
2014-03-04 18:22:15 +08:00 |
|
Xinchen Hui
|
0fe209e317
|
Refactor _php_stream_scandir to avoid memleak
|
2014-03-02 22:47:59 +08:00 |
|
Xinchen Hui
|
069c158c20
|
Fixed php_info related
|
2014-03-02 21:31:38 +08:00 |
|
Dmitry Stogov
|
843423716b
|
Fixed user stream filters
|
2014-02-28 23:05:22 +04:00 |
|
Xinchen Hui
|
122cc5f495
|
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2
|
2014-02-27 16:56:17 +08:00 |
|
Dmitry Stogov
|
0548ac59a5
|
Resource closing without destruction
|
2014-02-27 12:28:55 +04:00 |
|
Xinchen Hui
|
a0ab299f7f
|
Fixed memory leak
|
2014-02-26 16:22:03 +08:00 |
|
Dmitry Stogov
|
9c317c57bc
|
Fixed user streams handling
|
2014-02-26 01:00:39 +04:00 |
|
Dmitry Stogov
|
639e4e1afa
|
Changes zend_is_callable() to use zend_string* instead of char*
|
2014-02-25 16:03:34 +04:00 |
|
Xinchen Hui
|
93428dc6b9
|
Refactor base64 to returning zend_string
|
2014-02-24 18:48:22 +08:00 |
|
Xinchen Hui
|
5adeaa147d
|
Refactoring php_stream_copy_to_mem to return zend_string
|
2014-02-24 18:12:30 +08:00 |
|
Xinchen Hui
|
29e2ce597b
|
Fixed segfault in file_get_contents
|
2014-02-21 16:32:46 +08:00 |
|
Dmitry Stogov
|
557994d50d
|
Use better data structures (incomplete)
|
2014-02-19 01:12:05 +04:00 |
|
Dmitry Stogov
|
7428cac6e8
|
Use better data structures (incomplete)
|
2014-02-18 16:44:01 +04:00 |
|
Dmitry Stogov
|
9ddf3c5780
|
Merge branch 'refactoring2' of github.com:zend-dev/php into refactoring2
|
2014-02-18 16:28:26 +04:00 |
|
Dmitry Stogov
|
5de7115679
|
Use better data structures (incomplete; able to run bench.php)
|
2014-02-18 16:27:38 +04:00 |
|
Xinchen Hui
|
43b03c74b3
|
Refacting smart_str
|
2014-02-18 17:42:46 +08:00 |
|
Dmitry Stogov
|
1c4f3d39a8
|
Use better data structures (incomplete)
|
2014-02-18 11:44:58 +04:00 |
|
Dmitry Stogov
|
4d6ff31cb3
|
emalloced interned strings have to be deallocated before memory manager shutdown
|
2014-02-17 22:30:35 +04:00 |
|
Dmitry Stogov
|
2b9b9afa7a
|
Use better data structures (incomplete)
|
2014-02-17 17:59:18 +04:00 |
|
Dmitry Stogov
|
398256e5fe
|
Use better data structures (incomplete)
|
2014-02-14 13:40:11 +04:00 |
|
Dmitry Stogov
|
40e053e7f3
|
Use better data structures (incomplete)
|
2014-02-13 17:54:23 +04:00 |
|
Dmitry Stogov
|
f4cfaf36e2
|
Use better data structures (incomplete)
|
2014-02-10 10:04:30 +04:00 |
|
Xinchen Hui
|
0f53e37494
|
Merge branch 'PHP-5.6'
|
2014-01-03 11:09:07 +08:00 |
|