summaryrefslogtreecommitdiff
path: root/ext/soap/php_encoding.c
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Remove Netware supportKalle Sommer Nielsen2016-11-121-1/+1
|/ / | | | | | | If this does not break the Unix system somehow, I'll be amazed. This should get most of it out, apologies for any errors this may cause on non-Windows ends which I cannot test atm.
* | Introduced HT_IS_PACKED() and HT_IS_WITHOUT_HOLES() macros. (Benjamin Coutu)Dmitry Stogov2016-10-191-0/+4
| |
* | Fixed bug #73237Keith Smiley2016-10-141-2/+4
| | | | | | | | | | | | | | | | | | If the response includes both fields with simple types (which get concatenated into an XML string) and a complex type (which is parsed into an object), then the object will parsed into the same zval as the simple types and will overwrite the string. (cherry picked from commit 26287132c0c48e52dbaf1ac44c1d2f0d0d9b0cf7)
* | Merge branch 'PHP-7.0' into PHP-7.1Nikita Popov2016-08-301-2/+2
|\ \ | |/
| * Fix bug #71711Nikita Popov2016-08-301-2/+2
| | | | | | | | Also handle another case of bug #71996.
* | Merge branch 'PHP-7.0' into PHP-7.1Nikita Popov2016-08-301-0/+1
|\ \ | |/
| * Fixed bug #71996Nikita Popov2016-08-301-0/+1
| |
* | Fixed compilation warningsDmitry Stogov2016-06-221-87/+87
| |
* | Added ZEND_ATTRIBUTE_FORMAT to some middind functions.Dmitry Stogov2016-06-211-1/+1
| | | | | | | | | | "%p" replaced by ZEND_LONG_FMT to avoid compilation warnings. Fixed most incorrect use cases of format specifiers.
* | - get rid of EG(scope). zend_get_executed_scope() should be used instead.Dmitry Stogov2016-04-281-13/+8
|/ | | | - ichanged zval_update_constant_ex(). Use IS_TYPE_IMMUTABLE flag on shared constants and AST, instead of "inline_change" parameter.
* Fixed bug #71986 (Nested foreach assign-by-reference creates broken variables)Xinchen Hui2016-04-081-0/+1
|
* check for NULL and avoid crashesAntony Dovgal2016-01-251-2/+10
|
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| |
| * Merge branch 'PHP-5.5' into PHP-5.6Xinchen Hui2015-03-251-1/+1
| |\
| | * Bug #69293 NEW segfault when using SoapClient::__setSoapHeader (bisected, ↵Xinchen Hui2015-03-251-1/+1
| | | | | | | | | | | | | | | | | | regression) This was a typo introduced in c8eaca013a3922e8383def6158ece2b63f6ec483
| * | Merge branch 'PHP-5.5' into PHP-5.6Reeze Xia2015-03-031-10/+20
| |\ \ | | |/ | | | | | | | | | | | | | | | * PHP-5.5: Improve fix for bug 67741 Added type checks Added type checks
* | | Fixed typoXinchen Hui2015-12-211-2/+1
| | |
* | | Fixed incorrect usage of HASH_OF() macro. Replaced HASH_OF() with more ↵Dmitry Stogov2015-09-241-1/+1
| | | | | | | | | | | | appropriate Z_ARRVAL_P() or Z_OBJPROP_P().
* | | Cleanup (removed dead code)Dmitry Stogov2015-07-011-1/+0
| | |
* | | Use ZSTR_ API to access zend_string elements (this is just renaming without ↵Dmitry Stogov2015-06-301-40/+40
| | | | | | | | | | | | semantick changes).
* | | Make convert_to_* safe with rc>1Nikita Popov2015-06-111-12/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | fix timezone usage in soap for vc14Anatol Belski2015-05-101-1/+1
| | |
* | | Clean up some type conversionsNikita Popov2015-04-271-9/+3
| | | | | | | | | | | | | | | While at it also fix some type checks in iconv and drop dead and unported code in standard/filters.
* | | Removed unused functionsDmitry Stogov2015-03-241-1/+1
| | |
* | | Merge branch 'PHP-5.6'Dmitry Stogov2015-03-031-7/+14
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.6: Added type checks Update NEWS Conflicts: NEWS ext/soap/php_encoding.c ext/soap/soap.c
| * \ \ Merge branch 'PHP-5.5' into PHP-5.6Dmitry Stogov2015-03-031-7/+14
| |\ \ \ | | | |/ | | |/| | | | | | | | | * PHP-5.5: Added type checks
| | * | Merge branch 'PHP-5.4' into PHP-5.5Dmitry Stogov2015-03-031-7/+14
| | |\ \ | | | | | | | | | | | | | | | | | | | | * PHP-5.4: Added type checks
| | | * | Added type checksDmitry Stogov2015-03-031-7/+14
| | | | |
* | | | | Merge branch 'PHP-5.6'Dmitry Stogov2015-03-031-3/+6
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.6: Added type checks Fixed bug #67741 (auto_prepend_file messes up __LINE__) Check variable type before its usage as IS_ARRAY. Fixed a bug that header value is not terminated by '\0' when accessed through getenv(). Conflicts: ext/soap/php_encoding.c ext/soap/php_http.c ext/soap/soap.c
| * | | | Merge branch 'PHP-5.5' into PHP-5.6Dmitry Stogov2015-03-031-3/+6
| |\ \ \ \ | | |/ / / | | | | / | | |_|/ | |/| | | | | | | | | | | | | | * PHP-5.5: Added type checks Fixed bug #67741 (auto_prepend_file messes up __LINE__) Check variable type before its usage as IS_ARRAY. Fixed a bug that header value is not terminated by '\0' when accessed through getenv().
| | * | Merge branch 'PHP-5.4' into PHP-5.5Dmitry Stogov2015-03-031-3/+6
| | |\ \ | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.4: Added type checks Conflicts: ext/soap/soap.c
| | | * Added type checksDmitry Stogov2015-03-031-3/+6
| | | |
| | | * Bump yearXinchen Hui2014-01-031-1/+1
| | | |
| | | * Happy New YearXinchen Hui2013-01-011-1/+1
| | | |
| | | * Merge branch 'PHP-5.3' into PHP-5.4Dmitry Stogov2012-09-031-3/+4
| | | |\ | | | | | | | | | | | | | | | | | | | | * PHP-5.3: Fixed bug #50997 (SOAP Error when trying to submit 2nd Element of a choice).
| | | | * Fixed bug #50997 (SOAP Error when trying to submit 2nd Element of a choice).Dmitry Stogov2012-09-031-3/+4
| | | | |
| | | | * - Year++Felipe Pena2012-01-011-1/+1
| | | | |
| | | | * Fixed bug #55323 (SoapClient segmentation fault when XSD_TYPEKIND_EXTENSION ↵Dmitry Stogov2011-08-101-1/+38
| | | | | | | | | | | | | | | | | | | | contains itself)
| | | | * Fixed crash when passing invalid timestamp (negative integer on win32)Dmitry Stogov2011-05-041-0/+3
| | | | |
| | | | * - Year++Felipe Pena2011-01-011-1/+1
| | | | |
| | | | * This incorrect contraction started to get on my eyes after I saw it for theRasmus Lerdorf2010-09-031-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | 87th time while struggling with an annoying SOAP service.
| | | | * Fixed bug #52041 (Memory leak when writing on uninitialized variable ↵Dmitry Stogov2010-06-151-1/+6
| | | | | | | | | | | | | | | | | | | | returned from function)
| | | * | - Year++Felipe Pena2012-01-011-1/+1
| | | | |
| | | * | Fixed ZE specific compile warnings (Bug #55629)Dmitry Stogov2011-09-131-2/+2
| | | | |
| | | * | Fixed bug #55323 (SoapClient segmentation fault when XSD_TYPEKIND_EXTENSION ↵Dmitry Stogov2011-08-101-1/+38
| | | | | | | | | | | | | | | | | | | | contains itself)
| | * | | Bump yearXinchen Hui2015-01-151-1/+1
| | | | |
| | * | | Bump yearXinchen Hui2014-01-031-1/+1
| | | | |
| * | | | bump yearXinchen Hui2015-01-151-1/+1
| | | | |
* | | | | bump yearXinchen Hui2015-01-151-1/+1
| | | | |