Skip to content

Commit 4b6d784

Browse files
committed
Merge branch 'str_size_and_int64' of https://github.com/weltling/php-src into str_size_and_int64
Conflicts: NEWS UPGRADING UPGRADING.INTERNALS Zend/zend_API.c Zend/zend_compile.c Zend/zend_compile.h Zend/zend_constants.h Zend/zend_exceptions.c Zend/zend_exceptions.h Zend/zend_execute.c Zend/zend_language_scanner.c Zend/zend_language_scanner.l Zend/zend_operators.c Zend/zend_vm_def.h Zend/zend_vm_execute.h ext/date/lib/parse_date.c ext/date/php_date.c ext/imap/config.m4 ext/oci8/config.m4 ext/oci8/oci8.c ext/oci8/oci8_dtrace.d ext/oci8/oci8_interface.c ext/oci8/oci8_lob.c ext/oci8/oci8_statement.c ext/oci8/package.xml ext/oci8/php_oci8.h ext/reflection/php_reflection.c ext/spl/spl_directory.c ext/spl/spl_fixedarray.c ext/standard/file.c ext/standard/http_fopen_wrapper.c ext/standard/info.c ext/standard/string.c main/php_variables.c main/streams/streams.c
2 parents 4e537ca + 59ebbf5 commit 4b6d784

12 files changed

+371
-29
lines changed

Zend/zend_exceptions.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ void zend_throw_exception_internal(zval *exception TSRMLS_DC) /* {{{ */
8686
#ifdef HAVE_DTRACE
8787
if (DTRACE_EXCEPTION_THROWN_ENABLED()) {
8888
const char *classname;
89-
zend_str_size name_len;
89+
zend_str_size_uint name_len;
9090

9191
if (exception != NULL) {
9292
zend_get_object_classname(exception, &classname, &name_len TSRMLS_CC);

Zend/zend_exceptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ ZEND_API void zend_exception_error(zval *exception, int severity TSRMLS_DC);
5454

5555
/* do not export, in php it's available thru spprintf directly */
5656
zend_str_size_int zend_spprintf(char **message, zend_str_size_int max_len, const char *format, ...);
57-
57+
=======
5858
END_EXTERN_C()
5959

6060
#endif

0 commit comments

Comments
 (0)