<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/ext/fdf/fdf.c, branch dev</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Unify error messages</title>
<updated>2002-06-27T06:49:02+00:00</updated>
<author>
<name>Derick Rethans</name>
<email>derick@php.net</email>
</author>
<published>2002-06-27T06:49:02+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/commit/?id=51dfe5eebeb5b6a0a0247feea39e02632943f078'/>
<id>51dfe5eebeb5b6a0a0247feea39e02632943f078</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update headers.</title>
<updated>2001-12-11T15:32:16+00:00</updated>
<author>
<name>Sebastian Bergmann</name>
<email>sebastian@php.net</email>
</author>
<published>2001-12-11T15:32:16+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/commit/?id=38933514e1d60ac2f93225a705ed36b5b23d4e45'/>
<id>38933514e1d60ac2f93225a705ed36b5b23d4e45</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>proto fix</title>
<updated>2001-12-05T22:43:21+00:00</updated>
<author>
<name>Hartmut Holzgraefe</name>
<email>hholzgra@php.net</email>
</author>
<published>2001-12-05T22:43:21+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/commit/?id=6a42e63deeeabe5afa9636998e9ac61861fc5105'/>
<id>6a42e63deeeabe5afa9636998e9ac61861fc5105</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>* zend_module_entry change: apino, debug and zts are moved first,</title>
<updated>2001-10-11T23:33:59+00:00</updated>
<author>
<name>Stig Bakken</name>
<email>ssb@php.net</email>
</author>
<published>2001-10-11T23:33:59+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/commit/?id=689252082c2660e2b6fddc674047922d8b2c7845'/>
<id>689252082c2660e2b6fddc674047922d8b2c7845</id>
<content type='text'>
  see README.EXTENSIONS file for upgrade help.
@Introduced extension version numbers (Stig)

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  see README.EXTENSIONS file for upgrade help.
@Introduced extension version numbers (Stig)

</pre>
</div>
</content>
</entry>
<entry>
<title>- Don't wrap lines... this is annoying while coding.</title>
<updated>2001-09-09T13:29:31+00:00</updated>
<author>
<name>Derick Rethans</name>
<email>derick@php.net</email>
</author>
<published>2001-09-09T13:29:31+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/commit/?id=78747bd2df44ad9342d735f2c9376bc143664b42'/>
<id>78747bd2df44ad9342d735f2c9376bc143664b42</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Track down a few more functions that don't check for 0 args and use</title>
<updated>2001-08-13T07:55:39+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>2001-08-13T07:55:39+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/commit/?id=4d11d90880e63aaf125d09140775efdb287b9704'/>
<id>4d11d90880e63aaf125d09140775efdb287b9704</id>
<content type='text'>
faster mechanism

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
faster mechanism

</pre>
</div>
</content>
</entry>
<entry>
<title>We don't consistently check for args passed to functions that don't</title>
<updated>2001-08-13T06:43:47+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>2001-08-13T06:43:47+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/commit/?id=8c497f05c4d93f4054f67fb9875f0894364020e2'/>
<id>8c497f05c4d93f4054f67fb9875f0894364020e2</id>
<content type='text'>
take any args.  In some cases we probably want to skip the check for
performance reasons, but in other cases where performance is unlikely
to be a factor, not throwing a warning on the wrong number of args passed
to a function is at best inconsistent, and at worst it could hide a bug.
So, add a few such checks.  There are still lots of cases out there.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
take any args.  In some cases we probably want to skip the check for
performance reasons, but in other cases where performance is unlikely
to be a factor, not throwing a warning on the wrong number of args passed
to a function is at best inconsistent, and at worst it could hide a bug.
So, add a few such checks.  There are still lots of cases out there.

</pre>
</div>
</content>
</entry>
<entry>
<title>Whitespace</title>
<updated>2001-08-11T16:39:07+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2001-08-11T16:39:07+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/commit/?id=f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa'/>
<id>f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- TSRMLS_FETCH work</title>
<updated>2001-08-05T01:43:02+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2001-08-05T01:43:02+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/commit/?id=1159c84ab7849099d4a717cd05c2d920102040ed'/>
<id>1159c84ab7849099d4a717cd05c2d920102040ed</id>
<content type='text'>
- whitespace fixes

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- whitespace fixes

</pre>
</div>
</content>
</entry>
<entry>
<title>More TSRMLS_FETCH annihilation</title>
<updated>2001-07-31T05:44:11+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2001-07-31T05:44:11+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/php-git.git/commit/?id=aa1772ca7263173ee47af0d83fea866f194757ba'/>
<id>aa1772ca7263173ee47af0d83fea866f194757ba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
