From c98ea8465bd7a686cd7ee23c403b2f9dab6e3449 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Fri, 2 Oct 2015 07:19:21 -0700 Subject: [PATCH] Fixed bug #70619 (DateTimeImmutable segfault) --- NEWS | 3 +++ ext/date/php_date.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 6b95607aef..5d5ff9d11c 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,9 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2015, PHP 5.6.15 +- Date: + . Fixed bug #70619 (DateTimeImmutable segfault). (Laruence) + - Mysqlnd: . Fixed bug #70384 (mysqli_real_query():Unknown type 245 sent by the server). (Andrey) diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 4eca65bb11..aca226768e 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -2785,7 +2785,7 @@ PHP_METHOD(DateTimeImmutable, createFromMutable) php_date_obj *new_obj = NULL; php_date_obj *old_obj = NULL; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O!", &datetime_object, date_ce_date) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O", &datetime_object, date_ce_date) == FAILURE) { return; } -- 2.50.1