]> granicus.if.org Git - php/log
php
13 years agoMerge branch '5.4'
Gustavo André dos Santos Lopes [Fri, 23 Mar 2012 11:32:43 +0000 (11:32 +0000)]
Merge branch '5.4'

13 years agoMerge branch '5.3' into 5.4
Gustavo André dos Santos Lopes [Fri, 23 Mar 2012 11:32:20 +0000 (11:32 +0000)]
Merge branch '5.3' into 5.4

13 years agoFixed bug #61482, caused by the fix to bug #61418.
Gustavo André dos Santos Lopes [Fri, 23 Mar 2012 09:42:05 +0000 (09:42 +0000)]
Fixed bug #61482, caused by the fix to bug #61418.

Turns out I'd forgotten to also update the destructor for the iterator
returned by DirectoryIterator.
The iterator for DirectoryIterator maintains the same ->current pointer
throughout its existence (the DirectoryIterator itself) and returns it
(the same object) everytime a value is requested from the iterator.
Moving forward the iterator only changes the object. Previous code
added two references to the object in get_iterator on the account of
1) the iterator memory living in its DirectoryIterator object and
2) the object being stored in iterator->current. This seems to be
unnecessary. Iterators are not responsible for incrementing the refcount
of the values they yield, that's up to the caller (the engine). What
matters for the iterator is that the object exists as long as the
iterator exists and this can be guaranteed by incremented the refcount
only once. Consequently, I only add one reference in get_iterator
(and reclaim it in the iterator destructor).

13 years agoRevert "Revert "- Fixed bug #61418 (Segmentation fault when DirectoryIterator's or...
Gustavo André dos Santos Lopes [Fri, 23 Mar 2012 09:40:27 +0000 (09:40 +0000)]
Revert "Revert "- Fixed bug #61418 (Segmentation fault when DirectoryIterator's or" - causes bug #61482"

This reverts commit a89c4a34ee55686ab1430a5060e1460335fc5203.

13 years agoRevert "revert from NEWS too"
Gustavo André dos Santos Lopes [Fri, 23 Mar 2012 09:40:20 +0000 (09:40 +0000)]
Revert "revert from NEWS too"

This reverts commit 4990250f2d5bd3dad82e9d98d4b18c3091bf8843.

13 years agorevert from NEWS too
Stanislav Malyshev [Fri, 23 Mar 2012 05:34:32 +0000 (22:34 -0700)]
revert from NEWS too

13 years agoMerge branch 'PHP-5.4'
Stanislav Malyshev [Fri, 23 Mar 2012 05:31:10 +0000 (22:31 -0700)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Revert "- Fixed bug #61418 (Segmentation fault when DirectoryIterator's or" - causes bug #61482
  update for git

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
Stanislav Malyshev [Fri, 23 Mar 2012 05:30:51 +0000 (22:30 -0700)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Revert "- Fixed bug #61418 (Segmentation fault when DirectoryIterator's or" - causes bug #61482
  Add initialization tests for SQLT_INT binds
  Fix NEWS

13 years agoRevert "- Fixed bug #61418 (Segmentation fault when DirectoryIterator's or" - causes...
Stanislav Malyshev [Fri, 23 Mar 2012 05:29:50 +0000 (22:29 -0700)]
Revert "- Fixed bug #61418 (Segmentation fault when DirectoryIterator's or" - causes bug #61482

This reverts commit 714f1ff4b37c5101b3c61ea108a3d415f41e50df.

13 years agoupdate for git
Stanislav Malyshev [Thu, 22 Mar 2012 19:05:27 +0000 (12:05 -0700)]
update for git

13 years agoMerge branch 'PHP-5.4' of ../php-5.4
Christopher Jones [Thu, 22 Mar 2012 21:35:56 +0000 (14:35 -0700)]
Merge branch 'PHP-5.4' of ../php-5.4

* 'PHP-5.4' of ../php-5.4:
  More changes to README
  Add initialization tests for SQLT_INT binds
  Fix NEWS

13 years agoMerge branch 'master' of https://git.php.net/repository/php-src
Christopher Jones [Thu, 22 Mar 2012 21:33:21 +0000 (14:33 -0700)]
Merge branch 'master' of https://git.php.net/repository/php-src

* 'master' of https://git.php.net/repository/php-src:
  Add initialization tests for SQLT_INT binds

13 years agoMerge branch 'PHP-5.3' of ../php-5.3 into PHP-5.4
Christopher Jones [Thu, 22 Mar 2012 21:31:48 +0000 (14:31 -0700)]
Merge branch 'PHP-5.3' of ../php-5.3 into PHP-5.4

* 'PHP-5.3' of ../php-5.3:
  More changes to README
  Add initialization tests for SQLT_INT binds
  Fix NEWS

13 years agoMore changes to README
Christopher Jones [Thu, 22 Mar 2012 21:28:33 +0000 (14:28 -0700)]
More changes to README

13 years agoAdd initialization tests for SQLT_INT binds
Christopher Jones [Wed, 21 Mar 2012 23:12:28 +0000 (16:12 -0700)]
Add initialization tests for SQLT_INT binds

Added tests for SQLT_INT binds particularly to check for uninitialized
variables.

13 years agoAdd initialization tests for SQLT_INT binds
Christopher Jones [Wed, 21 Mar 2012 23:12:28 +0000 (16:12 -0700)]
Add initialization tests for SQLT_INT binds

Added tests for SQLT_INT binds particularly to check for uninitialized
variables.

13 years agoMerge branch 'PHP-5.4' of /home/cjones/php-src into PHP-5.4
Christopher Jones [Thu, 22 Mar 2012 18:34:25 +0000 (11:34 -0700)]
Merge branch 'PHP-5.4' of /home/cjones/php-src into PHP-5.4

* 'PHP-5.4' of /home/cjones/php-src: (21 commits)
  Fixed bug #61423 (gzip compression fails).
  BFN
  Fixed bug #61423 (gzip compression fails).
  Revert "Fixed reference counting"
  Revert "Fixed reference counting"
  Revert "Fixed reference counting"
  Fixed reference counting
  Fixed reference counting
  Fix test, and merge the modification from trunk
  Ignore the tempoary files
  Fix test, which was broken by the fix for #61173
  Use the NEWS merge driver if available
  Made some SplFileObject::fputcsv not pollute the working dir.
  Fixed bug #61453.
  Fixed bug #49853 (Soap Client stream context header option ignored)
  Always keep the NEWS file from the branch when merging
  Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831)
  - update NEWS
  - add test for bug #55000 and #54374
  - merge fix bug #54374, bug #55500 - filter file names better, no dangling [s, svn revision 321664
  ...

13 years agoMerge branch 'master' of https://git.php.net/repository/php-src
Christopher Jones [Thu, 22 Mar 2012 18:01:32 +0000 (11:01 -0700)]
Merge branch 'master' of https://git.php.net/repository/php-src

* 'master' of https://git.php.net/repository/php-src: (26 commits)
  Fixed bug #61423 (gzip compression fails).
  BFN
  Fixed bug #61423 (gzip compression fails).
  Revert "Fixed reference counting"
  Revert "Fixed reference counting"
  Revert "Fixed reference counting"
  Revert "Fixed reference counting"
  Revert "Fixed reference counting"
  Fixed reference counting
  Fixed reference counting
  Fixed reference counting
  Fix test, and merge the modification from trunk
  Ignore the tempoary files
  Fix test, which was broken by the fix for #61173
  Use the NEWS merge driver if available
  Made some SplFileObject::fputcsv not pollute the working dir.
  Fixed bug #61453.
  Fixed bug #49853 (Soap Client stream context header option ignored)
  Always keep the NEWS file from the branch when merging
  Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831)
  ...

13 years agoMerge branch 'PHP-5.4' of ../php-5.4
Christopher Jones [Thu, 22 Mar 2012 17:26:32 +0000 (10:26 -0700)]
Merge branch 'PHP-5.4' of ../php-5.4

* 'PHP-5.4' of ../php-5.4:
  Add initialization tests for SQLT_INT binds

13 years agoFix NEWS
Johannes Schlüter [Thu, 22 Mar 2012 15:40:13 +0000 (16:40 +0100)]
Fix NEWS

13 years agoMerge branch '5.4'
Ilia Alshanetsky [Thu, 22 Mar 2012 13:46:52 +0000 (09:46 -0400)]
Merge branch '5.4'

* 5.4:
  Fixed bug #61423 (gzip compression fails).

13 years agoFixed bug #61423 (gzip compression fails).
Ilia Alshanetsky [Thu, 22 Mar 2012 13:46:33 +0000 (09:46 -0400)]
Fixed bug #61423 (gzip compression fails).

Conflicts:

NEWS

13 years agoMerge branch 'PHP-5.4'
Ilia Alshanetsky [Thu, 22 Mar 2012 13:15:53 +0000 (09:15 -0400)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  BFN
  Fixed bug #61423 (gzip compression fails).
  Revert "Fixed reference counting"
  Revert "Fixed reference counting"

13 years agoBFN
Ilia Alshanetsky [Thu, 22 Mar 2012 13:15:40 +0000 (09:15 -0400)]
BFN

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
Ilia Alshanetsky [Thu, 22 Mar 2012 13:15:17 +0000 (09:15 -0400)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fixed bug #61423 (gzip compression fails).
  Revert "Fixed reference counting"

13 years agoFixed bug #61423 (gzip compression fails).
Ilia Alshanetsky [Thu, 22 Mar 2012 13:13:45 +0000 (09:13 -0400)]
Fixed bug #61423 (gzip compression fails).

13 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Dmitry Stogov [Thu, 22 Mar 2012 12:40:15 +0000 (16:40 +0400)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

* 'PHP-5.4' of git.php.net:php-src:
  Revert "Fixed reference counting"
  Fixed reference counting

13 years agoMerge branch 'master' of git.php.net:php-src
Dmitry Stogov [Thu, 22 Mar 2012 11:53:53 +0000 (15:53 +0400)]
Merge branch 'master' of git.php.net:php-src

* 'master' of git.php.net:php-src:
  Revert "Fixed reference counting"
  Revert "Fixed reference counting"
  Fixed reference counting
  Fixed reference counting

13 years agoRevert "Fixed reference counting"
Dmitry Stogov [Thu, 22 Mar 2012 11:52:32 +0000 (15:52 +0400)]
Revert "Fixed reference counting"

This reverts commit 752fec88ef5ce15c750776d008ae843ee1ba761e.

13 years agoRevert "Fixed reference counting"
Dmitry Stogov [Thu, 22 Mar 2012 11:51:58 +0000 (15:51 +0400)]
Revert "Fixed reference counting"

This reverts commit 14af1fe6923c65a91cd77eab5a8d4326f854391d.

13 years agoRevert "Fixed reference counting"
Dmitry Stogov [Thu, 22 Mar 2012 11:51:33 +0000 (15:51 +0400)]
Revert "Fixed reference counting"

This reverts commit 5bf1efbf209b7d14edc8d01098465ed0bdda1516.

13 years agoMerge branch 'PHP-5.4'
David Soria Parra [Thu, 22 Mar 2012 11:16:18 +0000 (12:16 +0100)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Revert "Fixed reference counting"
  Fixed reference counting
  Fixed reference counting

13 years agoRevert "Fixed reference counting"
David Soria Parra [Thu, 22 Mar 2012 11:16:12 +0000 (12:16 +0100)]
Revert "Fixed reference counting"

This reverts commit 5bf1efbf209b7d14edc8d01098465ed0bdda1516.

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
David Soria Parra [Thu, 22 Mar 2012 11:13:52 +0000 (12:13 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fixed reference counting

13 years agoRevert "Fixed reference counting"
David Soria Parra [Thu, 22 Mar 2012 11:13:31 +0000 (12:13 +0100)]
Revert "Fixed reference counting"

This reverts commit 752fec88ef5ce15c750776d008ae843ee1ba761e.

13 years agoFixed reference counting
Dmitry Stogov [Thu, 22 Mar 2012 10:38:38 +0000 (14:38 +0400)]
Fixed reference counting

13 years agoFixed reference counting
Dmitry Stogov [Thu, 22 Mar 2012 10:38:38 +0000 (14:38 +0400)]
Fixed reference counting

13 years agoFixed reference counting
Dmitry Stogov [Thu, 22 Mar 2012 10:38:38 +0000 (14:38 +0400)]
Fixed reference counting

13 years agoMerge branch 'PHP-5.4'
Xinchen Hui [Thu, 22 Mar 2012 09:33:23 +0000 (17:33 +0800)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fix test, and merge the modification from trunk

Conflicts:
ext/mbstring/tests/mb_eregi_replace.phpt

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
Xinchen Hui [Thu, 22 Mar 2012 09:31:15 +0000 (17:31 +0800)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fix test, and merge the modification from trunk

13 years agoFix test, and merge the modification from trunk
Xinchen Hui [Thu, 22 Mar 2012 09:30:16 +0000 (17:30 +0800)]
Fix test, and merge the modification from trunk

13 years agoMerge branch 'PHP-5.4'
Xinchen Hui [Thu, 22 Mar 2012 09:23:02 +0000 (17:23 +0800)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Ignore the tempoary files

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
Xinchen Hui [Thu, 22 Mar 2012 09:22:47 +0000 (17:22 +0800)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Ignore the tempoary files

13 years agoIgnore the tempoary files
Xinchen Hui [Thu, 22 Mar 2012 09:22:17 +0000 (17:22 +0800)]
Ignore the tempoary files

13 years agoMerge branch 'PHP-5.4'
Xinchen Hui [Thu, 22 Mar 2012 09:18:16 +0000 (17:18 +0800)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fix test, which was broken by the fix for #61173

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
Xinchen Hui [Thu, 22 Mar 2012 09:17:42 +0000 (17:17 +0800)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fix test, which was broken by the fix for #61173

Conflicts:
ext/fileinfo/tests/finfo_open_error.phpt

13 years agoFix test, which was broken by the fix for #61173
Xinchen Hui [Thu, 22 Mar 2012 09:10:03 +0000 (17:10 +0800)]
Fix test, which was broken by the fix for #61173

13 years agoMerge branch 'PHP-5.3' of ../php-5.3 into PHP-5.4
Christopher Jones [Wed, 21 Mar 2012 23:14:51 +0000 (16:14 -0700)]
Merge branch 'PHP-5.3' of ../php-5.3 into PHP-5.4

* 'PHP-5.3' of ../php-5.3:
  Add initialization tests for SQLT_INT binds

13 years agoAdd initialization tests for SQLT_INT binds
Christopher Jones [Wed, 21 Mar 2012 23:12:28 +0000 (16:12 -0700)]
Add initialization tests for SQLT_INT binds

Added tests for SQLT_INT binds particularly to check for uninitialized
variables.

13 years agoMerge branch '5.4' (just to sync, no code changes)
Gustavo André dos Santos Lopes [Wed, 21 Mar 2012 21:32:17 +0000 (21:32 +0000)]
Merge branch '5.4' (just to sync, no code changes)

13 years agoMerge branch '5.3' into 5.4 (just to sync, no code changes)
Gustavo André dos Santos Lopes [Wed, 21 Mar 2012 21:31:53 +0000 (21:31 +0000)]
Merge branch '5.3' into 5.4 (just to sync, no code changes)

13 years agoMerge branch 'PHP-5.3' of git.php.net:/php-src into 5.3
Gustavo André dos Santos Lopes [Wed, 21 Mar 2012 21:13:35 +0000 (21:13 +0000)]
Merge branch 'PHP-5.3' of git.php.net:/php-src into 5.3

13 years agoFixed bug #61043: Regression in magic_quotes_gpc fix (CVE-2012-0831)
Gustavo André dos Santos Lopes [Wed, 21 Mar 2012 21:06:00 +0000 (21:06 +0000)]
Fixed bug #61043: Regression in magic_quotes_gpc fix (CVE-2012-0831)

Merge commit 'refs/pull/12/head' of git://github.com/php/php-src into 5.3

Signed-off-by: Gustavo André dos Santos Lopes <cataphract@php.net>
13 years agoMerge branch 'PHP-5.4'
David Soria Parra [Wed, 21 Mar 2012 17:12:20 +0000 (18:12 +0100)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Use the NEWS merge driver if available

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
David Soria Parra [Wed, 21 Mar 2012 17:12:16 +0000 (18:12 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Use the NEWS merge driver if available

13 years agoUse the NEWS merge driver if available
David Soria Parra [Wed, 21 Mar 2012 17:07:30 +0000 (18:07 +0100)]
Use the NEWS merge driver if available

As described in https://wiki.php.net/vcs/gitworkflow#the_news_file it
is possible to setup a custom merge driver for NEWS so git doesnt try
to merge it.  This commit sets the default merge driver for the NEWS
file to the merge driver called NEWS.

13 years agoMerge branch '5.4'
Gustavo André dos Santos Lopes [Wed, 21 Mar 2012 13:15:52 +0000 (13:15 +0000)]
Merge branch '5.4'

13 years agoMade some SplFileObject::fputcsv not pollute the working dir.
Gustavo André dos Santos Lopes [Wed, 21 Mar 2012 13:13:17 +0000 (13:13 +0000)]
Made some SplFileObject::fputcsv not pollute the working dir.

13 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Dmitry Stogov [Wed, 21 Mar 2012 12:51:24 +0000 (16:51 +0400)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

13 years agoMerge branch 'master' of git.php.net:php-src
Dmitry Stogov [Wed, 21 Mar 2012 12:50:59 +0000 (16:50 +0400)]
Merge branch 'master' of git.php.net:php-src

13 years agoMerge branch 'PHP-5.4'
Dmitry Stogov [Wed, 21 Mar 2012 12:49:49 +0000 (16:49 +0400)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fixed bug #49853 (Soap Client stream context header option ignored)

Conflicts:
NEWS

13 years agoMerge branch '5.4'
Gustavo André dos Santos Lopes [Wed, 21 Mar 2012 12:43:51 +0000 (12:43 +0000)]
Merge branch '5.4'

Conflicts:
NEWS

13 years agoFixed bug #61453.
Gustavo André dos Santos Lopes [Wed, 21 Mar 2012 12:39:30 +0000 (12:39 +0000)]
Fixed bug #61453.

The "hash" function used strncpy on data that would have NUL bytes, ending the
copy prematurely and causing collisions between objects.

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
Dmitry Stogov [Wed, 21 Mar 2012 12:42:08 +0000 (16:42 +0400)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fixed bug #49853 (Soap Client stream context header option ignored)

Conflicts:
NEWS
ext/soap/php_sdl.c

13 years agoFixed bug #49853 (Soap Client stream context header option ignored)
Dmitry Stogov [Wed, 21 Mar 2012 12:32:49 +0000 (16:32 +0400)]
Fixed bug #49853 (Soap Client stream context header option ignored)

13 years agoMerge branch 'PHP-5.4'
David Soria Parra [Wed, 21 Mar 2012 11:41:45 +0000 (12:41 +0100)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Always keep the NEWS file from the branch when merging

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
David Soria Parra [Wed, 21 Mar 2012 11:41:40 +0000 (12:41 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Always keep the NEWS file from the branch when merging

13 years agoAlways keep the NEWS file from the branch when merging
David Soria Parra [Wed, 21 Mar 2012 11:38:43 +0000 (12:38 +0100)]
Always keep the NEWS file from the branch when merging

We usually don't want to touch the NEWS files when we merge and have the
news items not merged by git. Therefore we tell git to use the 'ours' strategy
for the NEWS file.

13 years agoMerge branch 'PHP-5.4'
David Soria Parra [Wed, 21 Mar 2012 11:15:33 +0000 (12:15 +0100)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fixed bug #61461 (missing checks around malloc() calls).

Conflicts:
NEWS

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
David Soria Parra [Wed, 21 Mar 2012 11:14:35 +0000 (12:14 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  - update NEWS
  - add test for bug #55000 and #54374
  - merge fix bug #54374, bug #55500 - filter file names better, no dangling [s, svn revision 321664

Conflicts:
NEWS

13 years agoMerge branch 'PHP-5.4'
David Soria Parra [Wed, 21 Mar 2012 11:10:03 +0000 (12:10 +0100)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  - update NEWS
  - add test for bug #55000 and #54374
  - merge fix bug #54374, bug #55500 - filter file names better, no dangling [s, svn revision 321664

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
David Soria Parra [Wed, 21 Mar 2012 11:09:53 +0000 (12:09 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  - update NEWS
  - add test for bug #55000 and #54374
  - merge fix bug #54374, bug #55500 - filter file names better, no dangling [s, svn revision 321664
  adapt makedist to git

Conflicts:
NEWS

13 years agoFixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831)
Ondřej Surý [Tue, 20 Mar 2012 09:21:07 +0000 (10:21 +0100)]
Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831)

13 years ago- revert test commit
Pierre Joye [Wed, 21 Mar 2012 07:30:33 +0000 (08:30 +0100)]
- revert test commit

13 years ago- test commit for log mail
Pierre Joye [Wed, 21 Mar 2012 06:34:46 +0000 (07:34 +0100)]
- test commit for log mail

13 years ago- update NEWS
Pierre Joye [Wed, 21 Mar 2012 06:06:07 +0000 (07:06 +0100)]
- update NEWS

13 years ago- add test for bug #55000 and #54374
Pierre Joye [Wed, 21 Mar 2012 06:00:22 +0000 (07:00 +0100)]
- add test for bug #55000 and #54374

13 years ago- merge fix bug #54374, bug #55500 - filter file names better, no dangling [s, svn...
Pierre Joye [Wed, 21 Mar 2012 05:58:55 +0000 (06:58 +0100)]
- merge fix bug #54374, bug #55500 - filter file names better, no dangling [s, svn revision 321664

13 years agoFixed bug #61461 (missing checks around malloc() calls).
Ilia Alshanetsky [Wed, 21 Mar 2012 01:07:08 +0000 (21:07 -0400)]
Fixed bug #61461 (missing checks around malloc() calls).

13 years agoMerge branch 'PHP-5.4'
Stanislav Malyshev [Tue, 20 Mar 2012 17:02:38 +0000 (10:02 -0700)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  adapt makedist to git

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
Stanislav Malyshev [Tue, 20 Mar 2012 17:02:22 +0000 (10:02 -0700)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  adapt makedist to git

13 years agoadapt makedist to git
Stanislav Malyshev [Tue, 20 Mar 2012 05:28:16 +0000 (22:28 -0700)]
adapt makedist to git

13 years agoMerge branch 'PHP-5.4'
David Soria Parra [Tue, 20 Mar 2012 16:59:33 +0000 (17:59 +0100)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Replace $Revision$ with $Id$ in keyword expansion enable files
  Enable $Id$ expansion for files with the $Revision$ keyword

Conflicts:
ext/mysqlnd/mysqlnd.h

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
David Soria Parra [Tue, 20 Mar 2012 16:58:58 +0000 (17:58 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Replace $Revision$ with $Id$ in keyword expansion enable files
  Enable $Id$ expansion for files with the $Revision$ keyword

Conflicts:
ext/mysqlnd/mysqlnd.h

13 years agoReplace $Revision$ with $Id$ in keyword expansion enable files
David Soria Parra [Tue, 20 Mar 2012 16:53:47 +0000 (17:53 +0100)]
Replace $Revision$ with $Id$ in keyword expansion enable files

13 years agoEnable $Id$ expansion for files with the $Revision$ keyword
David Soria Parra [Tue, 20 Mar 2012 16:49:42 +0000 (17:49 +0100)]
Enable $Id$ expansion for files with the $Revision$ keyword

Git supports a limited $Id$ keyword expansion. This $Id$ tag is similar to
$Revision$ in SVN. We enable the $Id$ expansion only for files that use
$Revision$.

13 years agoMerge branch 'PHP-5.4'
David Soria Parra [Tue, 20 Mar 2012 16:31:29 +0000 (17:31 +0100)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Adding Braces in json.c to conform with coding standards

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
David Soria Parra [Tue, 20 Mar 2012 16:29:20 +0000 (17:29 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Adding Braces in json.c to conform with coding standards

13 years agoAdding Braces in json.c to conform with coding standards
Matt Nowack [Mon, 19 Mar 2012 22:29:55 +0000 (15:29 -0700)]
Adding Braces in json.c to conform with coding standards

13 years agoMerge branch 'master' of git.php.net:php-src
Martin Jansen [Tue, 20 Mar 2012 10:16:09 +0000 (11:16 +0100)]
Merge branch 'master' of git.php.net:php-src

13 years agoMerge branch 'PHP-5.4'
Martin Jansen [Tue, 20 Mar 2012 10:15:36 +0000 (11:15 +0100)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Bump copyright year.

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
Martin Jansen [Tue, 20 Mar 2012 10:15:28 +0000 (11:15 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Bump copyright year.

13 years agoBump copyright year.
Martin Jansen [Tue, 20 Mar 2012 10:14:59 +0000 (11:14 +0100)]
Bump copyright year.

Bug #61386

13 years agoMerge branch 'PHP-5.4'
Xinchen Hui [Tue, 20 Mar 2012 09:22:03 +0000 (17:22 +0800)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Ignore the temporay files in sapi/*/tests/

13 years agoMerge branch 'PHP-5.3' into PHP-5.4
Xinchen Hui [Tue, 20 Mar 2012 09:21:35 +0000 (17:21 +0800)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Ignore the temporay files in sapi/*/tests/

13 years agoIgnore the temporay files in sapi/*/tests/
Xinchen Hui [Tue, 20 Mar 2012 07:59:17 +0000 (15:59 +0800)]
Ignore the temporay files in sapi/*/tests/

13 years agoMerge branch 'PHP-5.4'
Xinchen Hui [Tue, 20 Mar 2012 08:00:21 +0000 (16:00 +0800)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Ignore the temporay files in sapi/*/tests/

13 years agoIgnore the temporay files in sapi/*/tests/
Xinchen Hui [Tue, 20 Mar 2012 07:59:17 +0000 (15:59 +0800)]
Ignore the temporay files in sapi/*/tests/

13 years agoMerge branch 'PHP-5.4'
Xinchen Hui [Tue, 20 Mar 2012 07:42:25 +0000 (15:42 +0800)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Minor change, test using php mail address as account

13 years agoMinor change, test using php mail address as account
Xinchen Hui [Tue, 20 Mar 2012 07:41:43 +0000 (15:41 +0800)]
Minor change, test using php mail address as account