Go to file
Christoph M. Becker c21e901ba7 Fix #44618: Fetching may rely on uninitialized data
Unless `SQLGetData()` returns `SQL_SUCCESS` or `SQL_SUCCESS_WITH_INFO`,
the `StrLen_or_IndPtr` output argument is not guaranteed to be properly
set.  Thus we handle retrieval failure other than `SQL_ERROR` by
yielding `false` for those column values and raising a warning.

Closes GH-6281.
2020-10-29 11:59:12 +01:00
appveyor
build
ext Fix #44618: Fetching may rely on uninitialized data 2020-10-29 11:59:12 +01:00
main 7.3.25 is next 2020-10-13 09:52:46 +02:00
pear
sapi Make sure string is NUL byte terminated. 2020-08-10 19:11:03 -04:00
scripts
tests Do not decode cookie names anymore 2020-09-28 21:43:11 -07:00
travis set -ex on travis/compile.sh 2020-08-03 14:48:00 +02:00
TSRM Fix #79566: Private SHM is not private on Windows 2020-05-05 11:38:29 +02:00
win32 Fix #79884: PHP_CONFIG_FILE_PATH is meaningless 2020-07-23 15:39:22 +02:00
Zend Declare may_retry_reparse_point on windows only 2020-10-26 12:40:45 +01:00
.appveyor.yml Merge branch 'PHP-7.2' into PHP-7.3 2019-08-27 13:35:05 +02:00
.editorconfig
.gdbinit
.gitattributes
.gitignore
.travis.yml
acinclude.m4 Fix -Wimplicit-function-declaration in configure 2020-10-05 10:43:58 +02:00
buildconf
buildconf.bat Fix #79146: cscript can fail to run on some systems 2020-01-21 11:53:11 +01:00
CODING_STANDARDS
config.guess
config.sub
configure.ac 7.3.25 is next 2020-10-13 09:52:46 +02:00
CONTRIBUTING.md
CREDITS
EXTENSIONS
footer
genfiles
header
INSTALL
LICENSE
ltmain.sh
makedist
Makefile.frag
Makefile.gcov
Makefile.global
NEWS Fix #44618: Fetching may rely on uninitialized data 2020-10-29 11:59:12 +01:00
php7.spec.in
php.gif
php.ini-development Clarify session.cookie_samesite="None" 2020-03-18 15:59:30 +01:00
php.ini-production Clarify session.cookie_samesite="None" 2020-03-18 15:59:30 +01:00
README.EXT_SKEL
README.GIT-RULES
README.input_filter
README.MAILINGLIST_RULES
README.md
README.NEW-OUTPUT-API
README.PARAMETER_PARSING_API
README.REDIST.BINS
README.RELEASE_PROCESS
README.SELF-CONTAINED-EXTENSIONS
README.STREAMS
README.SUBMITTING_PATCH
README.TESTING
README.UNIX-BUILD-SYSTEM
README.WIN32-BUILD-SYSTEM
run-tests.php Put Xdebug 3 into 'off' mode for run-tests.php 2020-05-18 13:49:12 +01:00
server-tests-config.php
server-tests.php
snapshot
stamp-h.in
UPGRADING [ci skip] Fix version 2020-09-29 12:10:51 +02:00
UPGRADING.INTERNALS
vcsclean

The PHP Interpreter

This is the github mirror of the official PHP repository located at https://git.php.net.

Build Status Build status

Pull Requests

PHP accepts pull requests via github. Discussions are done on github, but depending on the topic can also be relayed to the official PHP developer mailing list internals@lists.php.net.

New features require an RFC and must be accepted by the developers. See https://wiki.php.net/rfc and https://wiki.php.net/rfc/voting for more information on the process.

Bug fixes do not require an RFC, but require a bugtracker ticket. Always open a ticket at https://bugs.php.net and reference the bug id using #NNNNNN.

Fix #55371: get_magic_quotes_gpc() throws deprecation warning

After removing magic quotes, the get_magic_quotes_gpc function caused
a deprecate warning. get_magic_quotes_gpc can be used to detected
the magic_quotes behavior and therefore should not raise a warning at any
time. The patch removes this warning

We do not merge pull requests directly on github. All PRs will be pulled and pushed through https://git.php.net.

Guidelines for contributors