<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/Zend, branch php-7.0.4</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Fixed bug #71601 (finally block not executed after yield from)</title>
<updated>2016-02-15T21:37:21+00:00</updated>
<author>
<name>Bob Weinand</name>
<email>bobwei9@hotmail.com</email>
</author>
<published>2016-02-15T21:37:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=23b770f31fdf893239a185bdb36876c5438eb813'/>
<id>23b770f31fdf893239a185bdb36876c5438eb813</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Format string fixes</title>
<updated>2016-02-14T13:45:53+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2016-02-14T13:02:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=c9357f82d3882eb3c7cb9f63dbc98d354fb20739'/>
<id>c9357f82d3882eb3c7cb9f63dbc98d354fb20739</id>
<content type='text'>
Conflicts:
	ext/pgsql/pgsql.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	ext/pgsql/pgsql.c
</pre>
</div>
</content>
</entry>
<entry>
<title>Forbid yield from in by-reference generators</title>
<updated>2016-02-12T16:55:29+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2016-02-12T16:55:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ccc06e252bdf4c54cb2c96dbcab9a2aeb933181c'/>
<id>ccc06e252bdf4c54cb2c96dbcab9a2aeb933181c</id>
<content type='text'>
The current yield from implementation doesn't support by-ref
yields. It's likely not worthwhile to actually implement this,
but we should at least keep the door open for the future by
issuing a compile error.

Refs bug #71252.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The current yield from implementation doesn't support by-ref
yields. It's likely not worthwhile to actually implement this,
but we should at least keep the door open for the future by
issuing a compile error.

Refs bug #71252.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix yield-by-ref of constant</title>
<updated>2016-02-11T15:32:45+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2016-02-11T15:32:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9cebdc5d4741c9a3a847ca473fd1742c75ca7740'/>
<id>9cebdc5d4741c9a3a847ca473fd1742c75ca7740</id>
<content type='text'>
Typo in the condition...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Typo in the condition...
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix dangling send target when using yield from</title>
<updated>2016-02-11T15:25:16+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2016-02-11T15:22:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1322672c0b70cf3a8f3fa64f7d6c4b52338f8b81'/>
<id>1322672c0b70cf3a8f3fa64f7d6c4b52338f8b81</id>
<content type='text'>
Also drop some unnecessary TRY_DELREFs -- leftovers from the days
when null was refcounted.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also drop some unnecessary TRY_DELREFs -- leftovers from the days
when null was refcounted.
</pre>
</div>
</content>
</entry>
<entry>
<title>Crude generator GC for value/key/retval</title>
<updated>2016-02-10T18:03:02+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2016-02-10T18:03:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=aa3f44a395f9197f112ced584539055fa836eac4'/>
<id>aa3f44a395f9197f112ced584539055fa836eac4</id>
<content type='text'>
These values remain live after the generator has been closed, so
they are particularly susceptible to leaking cycles.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These values remain live after the generator has been closed, so
they are particularly susceptible to leaking cycles.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed bug (Low probability segfault in zend_arena)</title>
<updated>2016-02-09T04:20:11+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@gmail.com</email>
</author>
<published>2016-02-09T04:20:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a219fc175333f11c0e2fe90efd25e7d8fee5fdfb'/>
<id>a219fc175333f11c0e2fe90efd25e7d8fee5fdfb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug #71529</title>
<updated>2016-02-06T15:43:28+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2016-02-06T15:38:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9f82f21d018aafbfea723960a335f435202bff77'/>
<id>9f82f21d018aafbfea723960a335f435202bff77</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed bug #71485 (Return typehint on interanal func causes Fatal error when it throws exception).</title>
<updated>2016-01-30T06:05:52+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@gmail.com</email>
</author>
<published>2016-01-30T06:05:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=e0627594011364e6d75d86a87c6c3a9219e704d1'/>
<id>e0627594011364e6d75d86a87c6c3a9219e704d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed bug #71474 (Crash because of VM stack corruption on Magento2).</title>
<updated>2016-01-28T08:41:15+00:00</updated>
<author>
<name>Dmitry Stogov</name>
<email>dmitry@zend.com</email>
</author>
<published>2016-01-28T08:41:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=6039d2d91454e5dc09996d2988d2f38ad8c316ae'/>
<id>6039d2d91454e5dc09996d2988d2f38ad8c316ae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
