diff options
Diffstat (limited to 'ext/date')
| -rw-r--r-- | ext/date/lib/parse_date.c | 4 | ||||
| -rw-r--r-- | ext/date/lib/parse_date.re | 2 | ||||
| -rw-r--r-- | ext/date/php_date.c | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/ext/date/lib/parse_date.c b/ext/date/lib/parse_date.c index d6a16cf48..d3f13f864 100644 --- a/ext/date/lib/parse_date.c +++ b/ext/date/lib/parse_date.c @@ -1,4 +1,4 @@ -/* Generated by re2c 0.13.5 on Sun Mar 31 10:47:54 2013 */ +/* Generated by re2c 0.13.5 on Fri Apr 26 11:10:28 2013 */ /* +----------------------------------------------------------------------+ | PHP Version 5 | @@ -24991,7 +24991,7 @@ timelib_time *timelib_parse_from_format(char *format, char *string, int len, tim break; case '\\': /* escaped char */ - *fptr++; + ++fptr; if (*ptr == *fptr) { ++ptr; } else { diff --git a/ext/date/lib/parse_date.re b/ext/date/lib/parse_date.re index 8aaa6c336..014f6a09e 100644 --- a/ext/date/lib/parse_date.re +++ b/ext/date/lib/parse_date.re @@ -2096,7 +2096,7 @@ timelib_time *timelib_parse_from_format(char *format, char *string, int len, tim break; case '\\': /* escaped char */ - *fptr++; + ++fptr; if (*ptr == *fptr) { ++ptr; } else { diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 4ef314369..808dc5a37 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -614,13 +614,11 @@ static void date_object_free_storage_interval(void *object TSRMLS_DC); static void date_object_free_storage_period(void *object TSRMLS_DC); static zend_object_value date_object_new_date(zend_class_entry *class_type TSRMLS_DC); -static zend_object_value date_object_new_immutable(zend_class_entry *class_type TSRMLS_DC); static zend_object_value date_object_new_timezone(zend_class_entry *class_type TSRMLS_DC); static zend_object_value date_object_new_interval(zend_class_entry *class_type TSRMLS_DC); static zend_object_value date_object_new_period(zend_class_entry *class_type TSRMLS_DC); static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC); -static zend_object_value date_object_clone_immutable(zval *this_ptr TSRMLS_DC); static zend_object_value date_object_clone_timezone(zval *this_ptr TSRMLS_DC); static zend_object_value date_object_clone_interval(zval *this_ptr TSRMLS_DC); static zend_object_value date_object_clone_period(zval *this_ptr TSRMLS_DC); |
