Commit:    a0618139c9f7aa7859f338a485af161f672be9cd
Author:    Derick Rethans <git...@derickrethans.nl>         Wed, 19 Dec 2012 
17:40:14 +0000
Parents:   017b1f7fca09896b05f2602136ffba7585cd4bfe
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=a0618139c9f7aa7859f338a485af161f672be9cd

Log:
Fixed crash bug when the non-OO interface was used.

Changed paths:
  M  ext/date/php_date.c


Diff:
diff --git a/ext/date/php_date.c b/ext/date/php_date.c
index 596a7a9..fc281ce 100644
--- a/ext/date/php_date.c
+++ b/ext/date/php_date.c
@@ -2954,7 +2954,7 @@ PHP_FUNCTION(date_modify)
 
        php_date_modify(object, modify, modify_len, return_value TSRMLS_CC);
 
-       RETURN_ZVAL(getThis(), 1, 0);
+       RETURN_ZVAL(object, 1, 0);
 }
 /* }}} */


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to