History log of /php-src/ext/soap/tests/bug75306.phpt (Results 1 – 2 of 2)
Revision Date Author Comments
# f320c356 15-Nov-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Use __DIR__-relative path in tests

Otherwise we can't run them from another directory, they'll fail
instead.


# 27797a26 18-Oct-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix bug #75306: Memleak in SoapClient

Setting the stream context via php_stream_context_to_zval() will
increase the reference count. So if the new context is created, then it
will en

Fix bug #75306: Memleak in SoapClient

Setting the stream context via php_stream_context_to_zval() will
increase the reference count. So if the new context is created, then it
will end up with a reference count of 2 while it should be 1.

Credits to cmb for the analysis. I arrived at the same patch as he did.

Closes GH-12523.

show more ...