php-src/ext/xmlrpc/libxmlrpc
Stanislav Malyshev b00f8f2a5b Merge branch 'PHP-5.6' into PHP-7.0
* PHP-5.6:
  fix #72519, possible OOB using imagegif
  fix #72512, invalid read or write for palette image when invalid transparent index is used
  Apparently some envs miss SIZE_MAX
  Fix tests
  Fix bug #72618: NULL Pointer Dereference in exif_process_user_comment
  Partial fix for bug #72613 - do not treat negative returns from bz2 as size_t
  Fix bug #72606: heap-buffer-overflow (write) simplestring_addn simplestring.c
  Fix for bug #72558, Integer overflow error within _gdContributionsAlloc()
  Fix bug #72603: Out of bound read in exif_process_IFD_in_MAKERNOTE
  Fix bug #72562 - destroy var_hash properly
  Fix bug #72533 (locale_accept_from_http out-of-bounds access)
  Fix fir bug #72520
  Fix for bug #72513
  Fix for bug #72513
  CS fix and comments with bug ID
  Fix for HTTP_PROXY issue.
  5.6.24RC1
  add tests for bug #72512
  Fixed bug #72512 gdImageTrueColorToPaletteBody allows arbitrary write/read access
  Fixed bug #72479 - same as #72434

Conflicts:
	Zend/zend_virtual_cwd.c
	ext/bz2/bz2.c
	ext/exif/exif.c
	ext/session/session.c
	ext/snmp/snmp.c
	ext/standard/basic_functions.c
	main/SAPI.c
	main/php_variables.c
2016-07-19 01:39:28 -07:00
..
acinclude.m4
base64.c trailing whitespace removal 2015-01-10 15:07:38 -08:00
base64.h
encodings.c trailing whitespace removal 2015-01-10 15:07:38 -08:00
encodings.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
queue.c trailing whitespace removal 2015-01-10 15:07:38 -08:00
queue.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
README
simplestring.c Apparently some envs miss SIZE_MAX 2016-07-19 00:13:25 -07:00
simplestring.h Merge branch 'PHP-5.6' into PHP-7.0 2016-07-19 01:39:28 -07:00
system_methods_private.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
system_methods.c trailing whitespace removal 2015-01-10 15:07:38 -08:00
xml_element.c trailing whitespace removal 2015-01-10 15:07:38 -08:00
xml_element.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
xml_to_dandarpc.c trailing whitespace removal 2015-01-10 15:07:38 -08:00
xml_to_dandarpc.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
xml_to_soap.c trailing whitespace removal 2015-01-10 15:07:38 -08:00
xml_to_soap.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
xml_to_xmlrpc.c trailing whitespace removal 2015-01-10 15:07:38 -08:00
xml_to_xmlrpc.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
xmlrpc_introspection_private.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
xmlrpc_introspection.c trailing whitespace removal 2015-01-10 15:07:38 -08:00
xmlrpc_introspection.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
xmlrpc_private.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
xmlrpc_win32.h fix snprintf redefinition in libxmlrpc under vc14 2015-05-10 22:22:02 +02:00
xmlrpc.c trailing whitespace removal 2015-01-10 15:07:38 -08:00
xmlrpc.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
xmlrpc.m4

organization of this directory is moving towards this approach:

<module>.h               -- public API and data types
<module>_private.h       -- protected API and data types
<module>.c               -- implementation and private API / types

The rules are:
.c files may include *_private.h.
.h files may not include *_private.h

This allows us to have a nicely encapsulated C api with opaque data types and private functions
that are nonetheless shared between source files without redundant extern declarations..