]> granicus.if.org Git - php/log
php
15 years agoFix a valgrind warning as well as more trace log information
Andrey Hristov [Thu, 28 May 2009 17:49:00 +0000 (17:49 +0000)]
Fix a valgrind warning as well as more trace log information

15 years agoFix a problem with cursors, which did not happen with unbuffered PS for
Andrey Hristov [Thu, 28 May 2009 16:35:16 +0000 (16:35 +0000)]
Fix a problem with cursors, which did not happen with unbuffered PS for
some reason. Double free of the data, which led to valgrind warnigns.
The fix actually optimizes the code in this cases because the old code
used copy_ctor while the new one skips it because it is not needed.
Transferring data ownership and nulling works best, for PS where we
always copy the string from the result set, unlike the text protocol.

15 years agoI had accidently removed Andrey's path to work with ANSI QUOTES... fixing what I...
Ulf Wendel [Thu, 28 May 2009 15:47:08 +0000 (15:47 +0000)]
I had accidently removed Andrey's path to work with ANSI QUOTES... fixing what I broke (part 1)

15 years ago1) Changing EXPECT[F] sections to work with PHP 5.3 and PHP 6. 2) Merging a couple...
Ulf Wendel [Thu, 28 May 2009 14:11:41 +0000 (14:11 +0000)]
1) Changing EXPECT[F] sections to work with PHP 5.3 and PHP 6.  2) Merging a couple of fixes I applied to PHP 5.3 only yesterday. The changes should make it a little easier to do MFH and follow the rules in the future as we will soon have identical tests for PHP 5_3 and HEAD.

15 years agoFixing test (its OK in 5_3 and needs to be fixed in HEAD)
Ulf Wendel [Thu, 28 May 2009 13:55:46 +0000 (13:55 +0000)]
Fixing test (its OK in 5_3 and needs to be fixed in HEAD)

15 years ago#48378, exif_read_data() segfaults on certain corrupted .jpeg files
Pierre Joye [Thu, 28 May 2009 13:44:43 +0000 (13:44 +0000)]
#48378, exif_read_data() segfaults on certain corrupted .jpeg files

15 years agoNew test
Arnaud Le Blanc [Thu, 28 May 2009 13:22:15 +0000 (13:22 +0000)]
New test

15 years ago- MFB: fix build
Pierre Joye [Thu, 28 May 2009 11:50:15 +0000 (11:50 +0000)]
- MFB: fix build

15 years agoFix a bug with mysqlnd_fetch_field(_direct()). With mysqlnd the optimised
Andrey Hristov [Thu, 28 May 2009 11:47:15 +0000 (11:47 +0000)]
Fix a bug with mysqlnd_fetch_field(_direct()). With mysqlnd the optimised
function was called, which however, doesn't respect that during store the
raw data is not unpacked, to be lazy. The data is unpacked to zvals later,
during every row fetch. However, this way max_length won't be calculated
correctly. So, if a mysqlnd_fetch_field(_direct) call comes we need to
unpack everything and then calculate max_length...and that is expensive,
defies our lazy unpacking optimisation.

15 years agoFix a test, UNSIGNED is expected
Andrey Hristov [Thu, 28 May 2009 10:16:18 +0000 (10:16 +0000)]
Fix a test, UNSIGNED is expected

15 years agoNew test
Arnaud Le Blanc [Thu, 28 May 2009 10:15:32 +0000 (10:15 +0000)]
New test

15 years agoFix failures when the server is running with ANSI_QUOTES
Andrey Hristov [Thu, 28 May 2009 09:57:54 +0000 (09:57 +0000)]
Fix failures when the server is running with ANSI_QUOTES

15 years agofix build
Antony Dovgal [Thu, 28 May 2009 09:45:20 +0000 (09:45 +0000)]
fix build

15 years ago- Fix build for winblows
Jani Taskinen [Thu, 28 May 2009 09:09:02 +0000 (09:09 +0000)]
- Fix build for winblows

15 years agosync SQLite 3.6.14.2
Scott MacVicar [Thu, 28 May 2009 03:18:55 +0000 (03:18 +0000)]
sync SQLite 3.6.14.2

15 years agoChangeLog update
<changelog@php.net> [Thu, 28 May 2009 01:32:58 +0000 (01:32 +0000)]
ChangeLog update

15 years agoLanguage Tests: returnByReference
Robert Nicholson [Wed, 27 May 2009 22:33:25 +0000 (22:33 +0000)]
Language Tests: returnByReference

15 years agoLess warnings by usage of proper modifier
Andrey Hristov [Wed, 27 May 2009 20:04:49 +0000 (20:04 +0000)]
Less warnings by usage of proper modifier

15 years agobecause we use int64_t we need corresponding printf modifiers. the type
Andrey Hristov [Wed, 27 May 2009 19:56:47 +0000 (19:56 +0000)]
because we use int64_t we need corresponding printf modifiers. the type
can be different on 32 and 64 bit, thus we can't use ld and lld but
C helps us with inttypes.h and PRId64 and PRIu64 modifiers (without the %)

15 years agoFix tests when the server is running with ANSI_QUOTES
Andrey Hristov [Wed, 27 May 2009 18:13:56 +0000 (18:13 +0000)]
Fix tests when the server is running with ANSI_QUOTES

15 years agoAdditional revert
Andrey Hristov [Wed, 27 May 2009 15:04:55 +0000 (15:04 +0000)]
Additional revert

15 years agouse request encoding when parsing cookies
Antony Dovgal [Wed, 27 May 2009 14:53:05 +0000 (14:53 +0000)]
use request encoding when parsing cookies
fixes 14 segfaults in HEAD

15 years agoRevert previous patch to something that make sense and works in error cases
Andrey Hristov [Wed, 27 May 2009 14:16:00 +0000 (14:16 +0000)]
Revert previous patch to something that make sense and works in error cases

15 years ago- fix build on unix with bundled gd
Pierre Joye [Wed, 27 May 2009 13:56:08 +0000 (13:56 +0000)]
- fix build on unix with bundled gd

15 years agofix compile warnings
Antony Dovgal [Wed, 27 May 2009 13:42:00 +0000 (13:42 +0000)]
fix compile warnings

15 years agoRemove duplicated code of zend_hash_func and alias it to zend_get_hash_value
David Soria Parra [Wed, 27 May 2009 11:58:44 +0000 (11:58 +0000)]
Remove duplicated code of zend_hash_func and alias it to zend_get_hash_value

15 years ago- [DOC] always enable imagecolormatch
Pierre Joye [Wed, 27 May 2009 08:12:07 +0000 (08:12 +0000)]
- [DOC] always enable imagecolormatch

15 years ago- [DOC] always enable imagerotate (using bundled or system gd)
Pierre Joye [Wed, 27 May 2009 07:16:55 +0000 (07:16 +0000)]
- [DOC] always enable imagerotate (using bundled or system gd)

15 years agoLets pass the built php binary to run-tests.php's -p parameter
Kalle Sommer Nielsen [Wed, 27 May 2009 01:46:27 +0000 (01:46 +0000)]
Lets pass the built php binary to run-tests.php's -p parameter

15 years agoAdded configure.bat to cvsignore
Kalle Sommer Nielsen [Wed, 27 May 2009 01:44:48 +0000 (01:44 +0000)]
Added configure.bat to cvsignore

15 years agoSilent dl() if it fails
Kalle Sommer Nielsen [Wed, 27 May 2009 01:37:51 +0000 (01:37 +0000)]
Silent dl() if it fails

15 years agoNuke warnings
Kalle Sommer Nielsen [Wed, 27 May 2009 01:36:46 +0000 (01:36 +0000)]
Nuke warnings

15 years agoChangeLog update
<changelog@php.net> [Wed, 27 May 2009 01:32:41 +0000 (01:32 +0000)]
ChangeLog update

15 years ago - silent warnings
Pierre Joye [Tue, 26 May 2009 19:56:17 +0000 (19:56 +0000)]
 - silent warnings

15 years ago- remove filters function in the main file (see gd_filter.c)
Pierre Joye [Tue, 26 May 2009 19:45:38 +0000 (19:45 +0000)]
- remove filters function in the main file (see gd_filter.c)

15 years ago- gd_filter.c
Pierre Joye [Tue, 26 May 2009 19:43:11 +0000 (19:43 +0000)]
- gd_filter.c

15 years ago- add gd_arc to w32 script
Pierre Joye [Tue, 26 May 2009 19:42:19 +0000 (19:42 +0000)]
- add gd_arc to w32 script

15 years ago- add image(filled)ellipse to the compat layer (work around a bug in debian too,...
Pierre Joye [Tue, 26 May 2009 19:34:18 +0000 (19:34 +0000)]
- add image(filled)ellipse to the compat layer (work around a bug in debian too, function is declared but not present in the lib...)

15 years ago- Test for bug #48203
Jani Taskinen [Tue, 26 May 2009 17:19:09 +0000 (17:19 +0000)]
- Test for bug #48203

15 years ago- Fixed bug #48203 (crash when CURLOPT_STDERR is set to regular file)
Jani Taskinen [Tue, 26 May 2009 15:48:28 +0000 (15:48 +0000)]
- Fixed bug #48203 (crash when CURLOPT_STDERR is set to regular file)

15 years ago- missed this part
Pierre Joye [Tue, 26 May 2009 14:48:18 +0000 (14:48 +0000)]
- missed this part

15 years ago- Updated to version 2009.8 (2009h)
Derick Rethans [Tue, 26 May 2009 14:26:49 +0000 (14:26 +0000)]
- Updated to version 2009.8 (2009h)

15 years ago- MFB: [DOC] always enable imagefilter and imageconvolution, even when built against...
Pierre Joye [Tue, 26 May 2009 14:26:39 +0000 (14:26 +0000)]
- MFB: [DOC] always enable imagefilter and imageconvolution, even when built against system's gd

15 years agoWS
Andrey Hristov [Tue, 26 May 2009 14:03:07 +0000 (14:03 +0000)]
WS

15 years agoFix return value of pcntl_wextistatus() (fixes #47566,
Arnaud Le Blanc [Tue, 26 May 2009 14:00:42 +0000 (14:00 +0000)]
Fix return value of pcntl_wextistatus() (fixes #47566,
patch by james at jamesreno dot com)

15 years agows
Andrey Hristov [Tue, 26 May 2009 13:42:43 +0000 (13:42 +0000)]
ws

15 years agoFix a typo, utf8 is 3 byte max, for us, for now
Andrey Hristov [Tue, 26 May 2009 13:42:06 +0000 (13:42 +0000)]
Fix a typo, utf8 is 3 byte max, for us, for now
Add a another cset

15 years ago- Fixed param type (%l -> %ld)
Felipe Pena [Tue, 26 May 2009 12:35:38 +0000 (12:35 +0000)]
- Fixed param type (%l -> %ld)

15 years ago- Fix compile warning && nuke unused variables
Felipe Pena [Tue, 26 May 2009 12:26:49 +0000 (12:26 +0000)]
- Fix compile warning && nuke unused variables

15 years ago- Nuke duplicate tests
Jani Taskinen [Tue, 26 May 2009 10:27:55 +0000 (10:27 +0000)]
- Nuke duplicate tests

15 years agofix test
Jani Taskinen [Tue, 26 May 2009 10:12:41 +0000 (10:12 +0000)]
fix test

15 years ago- always add libgd/
Pierre Joye [Tue, 26 May 2009 08:53:03 +0000 (08:53 +0000)]
- always add libgd/

15 years ago- add a note about the actual problen so we don't forget it
Pierre Joye [Tue, 26 May 2009 08:10:03 +0000 (08:10 +0000)]
- add a note about the actual problen so we don't forget it

15 years ago- Add note about missing break
Jani Taskinen [Tue, 26 May 2009 08:02:31 +0000 (08:02 +0000)]
- Add note about missing break

15 years agoAdd tests:
Eric Stewart [Tue, 26 May 2009 06:11:26 +0000 (06:11 +0000)]
Add tests:
DOMComment::__construct() with constructor called twice.
DOMDocumentFragment::appendXML() with unbound fragment.
DOMDocumentFragment::appendXML() with unbalanced chunks.
DOMDocumentFragment::__construct() called twice.
DOMDocumentType: basic access to all properties.
DOMDocumentType::name with invalid state.
DOMDocumentType::entities with invalid state.
DOMDocumentType::notations with invalid state.
DOMDocumentType::publicId with invalid state.
DOMDocumentType::publicId with empty value.
DOMDocumentType::systemId with invalid state.
DOMDocumentType::systemId with empty value.
DOMDocumentType::internalSubset with invalid state.

15 years agoChangeLog update
<changelog@php.net> [Tue, 26 May 2009 01:32:56 +0000 (01:32 +0000)]
ChangeLog update

15 years agoTypo
Kalle Sommer Nielsen [Mon, 25 May 2009 19:40:49 +0000 (19:40 +0000)]
Typo

15 years ago- MFB: #48202, Out of memory error when passing non-existing filename, enable related...
Pierre Joye [Mon, 25 May 2009 16:16:54 +0000 (16:16 +0000)]
- MFB: #48202, Out of memory error when passing non-existing filename, enable related tests (marked as XFAIL now)

15 years ago- Dropped *_TEXT* macros in favor of unicode macros direct usage
Felipe Pena [Mon, 25 May 2009 14:32:15 +0000 (14:32 +0000)]
- Dropped *_TEXT* macros in favor of unicode macros direct usage

15 years ago- Fixed macro (thanks Kalle)
Felipe Pena [Mon, 25 May 2009 13:11:09 +0000 (13:11 +0000)]
- Fixed macro (thanks Kalle)

15 years agoMFB: Fixed bug #48313 (fgetcsv() return empty string rather then NULL for
Ilia Alshanetsky [Mon, 25 May 2009 13:02:55 +0000 (13:02 +0000)]
MFB: Fixed bug #48313 (fgetcsv() return empty string rather then NULL for
empty rows)

15 years agoRemoving test
Rasmus Lerdorf [Mon, 25 May 2009 11:59:03 +0000 (11:59 +0000)]
Removing test

15 years ago- enable MPIR support and the good old 4.1.x gmp for VC6. solving the lgplv3 mess
Pierre Joye [Mon, 25 May 2009 10:14:36 +0000 (10:14 +0000)]
- enable MPIR support and the good old 4.1.x gmp for VC6. solving the lgplv3 mess

15 years agoAdd the following new tests:
Eric Stewart [Mon, 25 May 2009 06:07:39 +0000 (06:07 +0000)]
Add the following new tests:
DOMCharacterData::appendData() with no arguments.
DOMCharacterData::deleteData() with count exceeding string size.
DOMCharacterData::deleteData() with no arguments.
DOMCharacterData::deleteData() with offset exceeding string size.
DOMCharacterData::insertData() with no arguments.
DOMCharacterData::replaceData() with no arguments.
DOMComment::__construct() with more arguments than acceptable.
DOMDocumentFragment::__construct().
DOMDocumentFragment::__construct() with too many errors.
DOMDocumentFragment::appendXML() with no arguments.
DOMDocumentFragment::appendXML() with children with properties.

15 years agoChangeLog update
<changelog@php.net> [Mon, 25 May 2009 01:32:41 +0000 (01:32 +0000)]
ChangeLog update

15 years agoExpand zend_(u_)symtable_update_current_key to allow specifying HashPosition
Sara Golemon [Mon, 25 May 2009 01:16:19 +0000 (01:16 +0000)]
Expand zend_(u_)symtable_update_current_key to allow specifying HashPosition

15 years agofix potential segfault when converting phars with metadata to other formats, add...
Greg Beaver [Sun, 24 May 2009 18:50:37 +0000 (18:50 +0000)]
fix potential segfault when converting phars with metadata to other formats, add test

15 years agoadd missing test
Greg Beaver [Sun, 24 May 2009 18:47:54 +0000 (18:47 +0000)]
add missing test

15 years agoChangeLog update
<changelog@php.net> [Sun, 24 May 2009 01:32:48 +0000 (01:32 +0000)]
ChangeLog update

15 years agows + cs
Jani Taskinen [Sat, 23 May 2009 18:59:17 +0000 (18:59 +0000)]
ws + cs

15 years agows
Jani Taskinen [Sat, 23 May 2009 18:52:03 +0000 (18:52 +0000)]
ws

15 years agows
Jani Taskinen [Sat, 23 May 2009 18:46:10 +0000 (18:46 +0000)]
ws

15 years ago- fix build, fix TS build
Pierre Joye [Sat, 23 May 2009 18:46:05 +0000 (18:46 +0000)]
- fix build, fix TS build

15 years agofix build
Jani Taskinen [Sat, 23 May 2009 18:42:54 +0000 (18:42 +0000)]
fix build

15 years agows + cs
Jani Taskinen [Sat, 23 May 2009 18:19:11 +0000 (18:19 +0000)]
ws + cs

15 years ago- Fix typo
Jani Taskinen [Sat, 23 May 2009 18:10:13 +0000 (18:10 +0000)]
- Fix typo

15 years agoImplement JIT request decoding support for $_GET and $_POST.
Andrei Zmievski [Sat, 23 May 2009 18:03:27 +0000 (18:03 +0000)]
Implement JIT request decoding support for $_GET and $_POST.

15 years ago- New tests (testfest NorthWestUG)
Felipe Pena [Sat, 23 May 2009 15:37:36 +0000 (15:37 +0000)]
- New tests (testfest NorthWestUG)

15 years ago- Added missing param checks
Felipe Pena [Sat, 23 May 2009 15:14:00 +0000 (15:14 +0000)]
- Added missing param checks

15 years ago- New xsl files
Felipe Pena [Sat, 23 May 2009 14:49:29 +0000 (14:49 +0000)]
- New xsl files

15 years ago- New tests (testfest BerlinUG)
Felipe Pena [Sat, 23 May 2009 14:44:37 +0000 (14:44 +0000)]
- New tests (testfest BerlinUG)

15 years agoMFB: fix compilation of pdo_firebird and intl extension with ld --as-needed
Nuno Lopes [Sat, 23 May 2009 13:52:53 +0000 (13:52 +0000)]
MFB: fix compilation of pdo_firebird and intl extension with ld --as-needed

15 years agoNew test: DOMAttr read $name property.
Eric Stewart [Sat, 23 May 2009 01:41:27 +0000 (01:41 +0000)]
New test: DOMAttr read $name property.
New test: DOMAttr read $ownerElement with null parent.
New test: DOMAttr write non-string $value property
New test: DOMCDATASection __construct() with no arguments.
New test: DOMCharacterData - Invalid State Error when getting data out of content.

15 years agoChangeLog update
<changelog@php.net> [Sat, 23 May 2009 01:33:20 +0000 (01:33 +0000)]
ChangeLog update

15 years agoNew test: DOMAttr __construct() with no arguments.
Eric Stewart [Sat, 23 May 2009 01:32:57 +0000 (01:32 +0000)]
New test: DOMAttr __construct() with no arguments.

15 years agoPrevious commit was an old version of the patch, PHP_ZTS is not a boolean but the...
Kalle Sommer Nielsen [Fri, 22 May 2009 19:46:53 +0000 (19:46 +0000)]
Previous commit was an old version of the patch, PHP_ZTS is not a boolean but the behaviour is still correct

15 years agoDon't build SQLite threadsafe on NTS builds
Kalle Sommer Nielsen [Fri, 22 May 2009 19:41:03 +0000 (19:41 +0000)]
Don't build SQLite threadsafe on NTS builds

15 years agoFix test on Windows
Kalle Sommer Nielsen [Fri, 22 May 2009 18:27:27 +0000 (18:27 +0000)]
Fix test on Windows

15 years agoAdded missing SKIPIF
Kalle Sommer Nielsen [Fri, 22 May 2009 18:22:15 +0000 (18:22 +0000)]
Added missing SKIPIF

15 years ago- Fixed invalid date checking
Felipe Pena [Fri, 22 May 2009 12:49:22 +0000 (12:49 +0000)]
- Fixed invalid date checking

15 years ago- New test
Felipe Pena [Fri, 22 May 2009 12:38:31 +0000 (12:38 +0000)]
- New test

15 years agoUse zend_get_property_info() in get_class_vars() (fixes #46812)
Arnaud Le Blanc [Fri, 22 May 2009 11:18:57 +0000 (11:18 +0000)]
Use zend_get_property_info() in get_class_vars() (fixes #46812)

15 years agoChangeLog update
<changelog@php.net> [Fri, 22 May 2009 01:32:47 +0000 (01:32 +0000)]
ChangeLog update

15 years agoFixed bug #48336 (ReflectionProperty::getDeclaringClass() does not
Arnaud Le Blanc [Thu, 21 May 2009 16:01:22 +0000 (16:01 +0000)]
Fixed bug #48336 (ReflectionProperty::getDeclaringClass() does not
work with redeclared property)
(patch by Markus dot Lidel at shadowconnect dot com)

15 years agoset second argument of gettimeofday() to NULL (fixes #48346,
Arnaud Le Blanc [Thu, 21 May 2009 14:21:18 +0000 (14:21 +0000)]
set second argument of gettimeofday() to NULL (fixes #48346,
patch by adriano at guiadohardware dot net)

15 years agoBetter fix for #45622 (patch by robinf at php do net)
Arnaud Le Blanc [Thu, 21 May 2009 13:25:48 +0000 (13:25 +0000)]
Better fix for #45622 (patch by robinf at php do net)

15 years agoMFB: Fixed bug #48207 (CURLOPT_(FILE|WRITEHEADER options do not error out
Ilia Alshanetsky [Thu, 21 May 2009 12:52:59 +0000 (12:52 +0000)]
MFB: Fixed bug #48207 (CURLOPT_(FILE|WRITEHEADER options do not error out
when working with a non-writable stream)

15 years agows
Jani Taskinen [Thu, 21 May 2009 01:39:48 +0000 (01:39 +0000)]
ws

15 years agoChangeLog update
<changelog@php.net> [Thu, 21 May 2009 01:32:45 +0000 (01:32 +0000)]
ChangeLog update

15 years agoMFB: Re-introduce the Matteo's patch and combine default & text handling
Ilia Alshanetsky [Wed, 20 May 2009 15:06:20 +0000 (15:06 +0000)]
MFB: Re-introduce the Matteo's patch and combine default & text handling
since they appear to be the same irregardless on notes inside sqlite3.h