<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/ext/pgsql, branch php-7.0.0beta2</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>Various warning fixes</title>
<updated>2015-07-17T18:18:25+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2015-07-17T18:18:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5c95226d50e565b43d9e7f2d4ff4deeaf7ec8942'/>
<id>5c95226d50e565b43d9e7f2d4ff4deeaf7ec8942</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix x86 build</title>
<updated>2015-07-07T10:41:05+00:00</updated>
<author>
<name>Kalle Sommer Nielsen</name>
<email>kalle@php.net</email>
</author>
<published>2015-07-07T10:41:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=0ac2371b5a5101aece913ce8bef10b968c26cbbb'/>
<id>0ac2371b5a5101aece913ce8bef10b968c26cbbb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch position of ce in exception ce variable names</title>
<updated>2015-07-03T14:45:03+00:00</updated>
<author>
<name>Aaron Piotrowski</name>
<email>aaron@trowski.com</email>
</author>
<published>2015-07-03T14:45:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ed1b64877d82af71bc64a48bf914046640e8a270'/>
<id>ed1b64877d82af71bc64a48bf914046640e8a270</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change zend_exception_get_default() to zend_exception_ce</title>
<updated>2015-07-03T14:44:48+00:00</updated>
<author>
<name>Aaron Piotrowski</name>
<email>aaron@trowski.com</email>
</author>
<published>2015-07-03T14:44:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a812a74c2e60a0ba080057067a7634e4da3f2b9b'/>
<id>a812a74c2e60a0ba080057067a7634e4da3f2b9b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use ZSTR_ API to access zend_string elements (this is just renaming without semantick changes).</title>
<updated>2015-06-30T01:05:24+00:00</updated>
<author>
<name>Dmitry Stogov</name>
<email>dmitry@zend.com</email>
</author>
<published>2015-06-30T01:05:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=4a2e40bb861bc3cf5fb6863e57486ed60316e97c'/>
<id>4a2e40bb861bc3cf5fb6863e57486ed60316e97c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix more proto comments</title>
<updated>2015-06-23T21:46:20+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>2015-06-23T21:46:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=28d7bb97a11c8eb55d568cb095517861c2e33d45'/>
<id>28d7bb97a11c8eb55d568cb095517861c2e33d45</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make convert_to_* safe with rc&gt;1</title>
<updated>2015-06-11T21:23:57+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2015-06-11T17:41:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5d3cf577aad15b119c137a873f468c0614f2eb2e'/>
<id>5d3cf577aad15b119c137a873f468c0614f2eb2e</id>
<content type='text'>
This only involves switching zval_dtor to zval_ptr_dtor for arrays
and making the convert_to_object for arrays a bit more generic.

All the other changes outside zend_operators.c just make use of
this new ability (use COPY instead of DUP).

What's still missing: Proper references handling. I've seen many
convert_to* calls that will break when a reference is used.

Also fixes bug #69788.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This only involves switching zval_dtor to zval_ptr_dtor for arrays
and making the convert_to_object for arrays a bit more generic.

All the other changes outside zend_operators.c just make use of
this new ability (use COPY instead of DUP).

What's still missing: Proper references handling. I've seen many
convert_to* calls that will break when a reference is used.

Also fixes bug #69788.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.6'</title>
<updated>2015-06-09T07:14:05+00:00</updated>
<author>
<name>Remi Collet</name>
<email>remi@php.net</email>
</author>
<published>2015-06-09T07:14:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1ad58ce12ea98f8eb599266ee65ed622ea50855c'/>
<id>1ad58ce12ea98f8eb599266ee65ed622ea50855c</id>
<content type='text'>
* PHP-5.6:
  fix test description
  Fixed Buf #68812 Unchecked return value.
  Fixed Buf #68812 Unchecked return value.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.6:
  fix test description
  Fixed Buf #68812 Unchecked return value.
  Fixed Buf #68812 Unchecked return value.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.5' into PHP-5.6</title>
<updated>2015-06-09T07:13:19+00:00</updated>
<author>
<name>Remi Collet</name>
<email>remi@php.net</email>
</author>
<published>2015-06-09T07:13:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5eecc6bcdee157aa7cb11691755bfd42007ead29'/>
<id>5eecc6bcdee157aa7cb11691755bfd42007ead29</id>
<content type='text'>
* PHP-5.5:
  fix test description
  Fixed Buf #68812 Unchecked return value.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.5:
  fix test description
  Fixed Buf #68812 Unchecked return value.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix test description</title>
<updated>2015-06-09T07:12:59+00:00</updated>
<author>
<name>Remi Collet</name>
<email>remi@php.net</email>
</author>
<published>2015-06-09T07:12:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=b347f2c47afa4fe1ebda0c97efbf7745577a91fe'/>
<id>b347f2c47afa4fe1ebda0c97efbf7745577a91fe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
