lang/php73: Update from 7.3.23 to 7.3.24
Changelog: Core: Fixed bug #79423 (copy command is limited to size of file it can copy). Calendar: Fixed bug #80185 (jdtounix() fails after 2037). IMAP: Fixed bug #80213 (imap_mail_compose() segfaults on certain $bodies). Fixed bug #80215 (imap_mail_compose() may modify by-val parameters). Fixed bug #80220 (imap_mail_compose() may leak memory). Fixed bug #80223 (imap_mail_compose() leaks envelope on malformed bodies). Fixed bug #80216 (imap_mail_compose() does not validate types/encodings). Fixed bug #80226 (imap_sort() leaks sortpgm memory). MySQLnd: Fixed bug #80115 (mysqlnd.debug doesn't recognize absolute paths with slashes). Fixed bug #80107 (mysqli_query() fails for ~16 MB long query when compression is enabled). ODBC: Fixed bug #78470 (odbc_specialcolumns() no longer accepts $nullable). Fixed bug #80147 (BINARY strings may not be properly zero-terminated). Fixed bug #80150 (Failure to fetch error message). Fixed bug #80152 (odbc_execute() moves internal pointer of $params). Fixed bug #46050 (odbc_next_result corrupts prepared resource). OPcache: Fixed bug #80083 (Optimizer pass 6 removes variables used for ibm_db2 data binding). PDO_ODBC: Fixed bug #67465 (NULL Pointer dereference in odbc_handle_preparer). Standard: Fixed bug #80114 (parse_url does not accept URLs with port 0). Fixed bug #76943 (Inconsistent stream_wrapper_restore() errors). Fixed bug #76735 (Incorrect message in fopen on invalid mode). Tidy: Fixed bug #77040 (tidyNode::isHtml() is completely broken). Sponsored by: PHP Update Service
This commit is contained in:
parent
343504c9a2
commit
0d65ddc7c5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=553871
4 changed files with 4 additions and 34 deletions
|
@ -1,11 +0,0 @@
|
|||
--- mysqli.c.orig 2016-12-06 18:05:01 UTC
|
||||
+++ mysqli.c
|
||||
@@ -703,7 +703,7 @@ PHP_MINIT_FUNCTION(mysqli)
|
||||
#ifdef MYSQLND_STRING_TO_INT_CONVERSION
|
||||
REGISTER_LONG_CONSTANT("MYSQLI_OPT_INT_AND_FLOAT_NATIVE", MYSQLND_OPT_INT_AND_FLOAT_NATIVE, CONST_CS | CONST_PERSISTENT);
|
||||
#endif
|
||||
-#if MYSQL_VERSION_ID > 50110 || defined(MYSQLI_USE_MYSQLND)
|
||||
+#if (MYSQL_VERSION_ID < 80000 && MYSQL_VERSION_ID > 50110) || defined(MYSQLI_USE_MYSQLND)
|
||||
REGISTER_LONG_CONSTANT("MYSQLI_OPT_SSL_VERIFY_SERVER_CERT", MYSQL_OPT_SSL_VERIFY_SERVER_CERT, CONST_CS | CONST_PERSISTENT);
|
||||
#endif
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
--- php_mysqli_structs.h.orig 2010-07-26 15:52:54.000000000 +0200
|
||||
+++ php_mysqli_structs.h 2010-07-26 15:53:14.000000000 +0200
|
||||
@@ -36,7 +36,7 @@
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
-#ifdef MYSQLI_USE_MYSQLND
|
||||
+#if defined(MYSQLI_USE_MYSQLND)
|
||||
#include "ext/mysqlnd/mysqlnd.h"
|
||||
#include "mysqli_mysqlnd.h"
|
||||
#else
|
||||
@@ -54,6 +54,7 @@
|
||||
#define WE_HAD_MBSTATE_T
|
||||
#endif
|
||||
|
||||
+#define HAVE_ULONG 1
|
||||
#include <my_global.h>
|
||||
|
||||
#if !defined(HAVE_MBRLEN) && defined(WE_HAD_MBRLEN)
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= php73
|
||||
DISTVERSION= 7.3.23
|
||||
DISTVERSION= 7.3.24
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES?= lang devel www
|
||||
MASTER_SITES= PHP/distributions
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1602192488
|
||||
SHA256 (php-7.3.23.tar.xz) = 2bdd36176f318f451fb3942bf1e935aabb3c2786cac41a9080f084ad6390e034
|
||||
SIZE (php-7.3.23.tar.xz) = 12133616
|
||||
TIMESTAMP = 1604051687
|
||||
SHA256 (php-7.3.24.tar.xz) = 78b0b417a147ab7572c874334d11654e3c61ec5b3f2170098e5db02fb0c89888
|
||||
SIZE (php-7.3.24.tar.xz) = 12138212
|
||||
|
|
Loading…
Reference in a new issue