History log of /PHP-7.1/Zend/zend_objects_API.c (Results 76 – 100 of 121)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: RELEASE_0_9, php-5.1.0b3, php-4.4.0, php-4.4.0RC2, php-5.1.0b2, php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1
# ce236926 06-Jun-2005 Dmitry Stogov

Fixed bug #32799 (crash: calling the corresponding global var during the destruct)


Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1
# 237cd7e5 22-Feb-2005 Marcus Boerger

- We cannot provide this fallback becuase it requires zend_object ptr's.
# Found that out after discussing with Stas. As a consequence still every
# extension that provides specialised class

- We cannot provide this fallback becuase it requires zend_object ptr's.
# Found that out after discussing with Stas. As a consequence still every
# extension that provides specialised class types is responsible for
# calling its __destruct. This is currently not done for several exts.

show more ...


# 93e13aff 22-Feb-2005 Marcus Boerger

- Force calling of dtors unless otherwise specified (fixes several __destruct bugs)


Revision tags: RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2, php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1, PRE_NEW_VM_GEN_PATCH, php-5.0.2, php-4.3.9
# 3755c032 17-Sep-2004 Stanislav Malyshev

fix crash when dtor is fialing on shutdown


Revision tags: php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1
# f5cf0522 25-Jul-2004 Marcus Boerger

- Fix bug #29368 : The destructor is called when an exception is thrown from the constructor


Revision tags: RELEASE_0_1, php-5.0.0RC4, php-5.0.0, php-4.3.8, php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1
# 0b0c5d3f 23-May-2004 Andi Gutmans

- Fix problem with object being destroyed more than once


Revision tags: RELEASE_0_1_1
# 3a4f33e3 17-May-2004 Wez Furlong

As discussed with Andi, add this helper API for setting the object pointer from
within the constructor.

Please read the comment for notes about how to use it; in general, you don't
n

As discussed with Andi, add this helper API for setting the object pointer from
within the constructor.

Please read the comment for notes about how to use it; in general, you don't
need it, so don't use it.

show more ...


# d056b25c 04-May-2004 Wez Furlong

Add count_elements handler for overloaded objects.


Revision tags: php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2
# bf997c3e 04-Apr-2004 Ilia Alshanetsky

Removed unused variable.


Revision tags: php-4.3.6RC1, php-4.3.5
# 7cf92e79 21-Mar-2004 Stanislav Malyshev

return zval *, to make it useful for read_property


# b372b86b 21-Mar-2004 Stanislav Malyshev

update to new API


Revision tags: php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1
# a87cc63a 11-Mar-2004 Andi Gutmans

- Real fix for bug #27535 (Dmitry)


# aa472500 11-Mar-2004 Andi Gutmans

- Attempt to fix bug #27535


Revision tags: RELEASE_0_2_0
# 1c180ba3 03-Mar-2004 Andi Gutmans

- Fix crash:
<?
class foo {
function __destruct() {
foreach ($this->x as $x);
}
}
new foo();
echo 'OK';
?>


# ccef2cfb 25-Feb-2004 Marcus Boerger

As Andi found out the dtor may increase the refcount.


# b0529e54 25-Feb-2004 Marcus Boerger

Fix object destruction/free in shutdown
- set destructor_called even when no dtor is given
- use free_storage even when no dtor hat to be called


# 98f725b0 25-Feb-2004 Marcus Boerger

Checking once for dtor is enough


Revision tags: php-4.3.5RC3, php-5.0.0b4, php-5.0.0b4RC1
# 8a129bfc 08-Feb-2004 Andi Gutmans

- Check if free_storage exists


# 5c3e03a2 04-Feb-2004 Zeev Suraski

The valid bit was necessary after all - restored


# 6584dca1 04-Feb-2004 Zeev Suraski

Fixlets


# f5f7d569 04-Feb-2004 Zeev Suraski

Change destructor implementation (details will follow on internals@)


# 3be75ced 03-Feb-2004 Zeev Suraski

Remove more garbage - valid bit was not really necessary


# c5a7b668 03-Feb-2004 Zeev Suraski

- Clean garbage (delete was nuked a long time ago)


Revision tags: php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1
# ccfc46b0 08-Jan-2004 foobar

- Happy new year and PHP 5 for rest of the files too..
# Should the LICENSE and Zend/LICENSE dates be updated too?


Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# 296529b8 10-Nov-2003 Marcus Boerger

Split isset/isempty for object property and object dimension hooking.


12345