39506d885e
THe main features of PHP 5.6: * Constant scalar expressions. * Variadic functions and argument unpacking using the ... operator. * Exponentiation using the ** operator. * Function and constant importing with the use keyword. * phpdbg as an interactive integrated debugger SAPI. * php://input is now reusable, and $HTTP_RAW_POST_DATA is deprecated. * GMP objects now support operator overloading. * File uploads larger than 2 gigabytes in size are now accepted. Please refer for difference from oldre release:http://php.net/migration56.
22 lines
984 B
C
22 lines
984 B
C
$NetBSD: patch-ext_mssql_php__mssql.c,v 1.1 2014/11/24 15:37:08 taca Exp $
|
|
|
|
--- ext/mssql/php_mssql.c.orig 2014-11-12 13:52:21.000000000 +0000
|
|
+++ ext/mssql/php_mssql.c
|
|
@@ -769,7 +769,7 @@ static void php_mssql_do_connect(INTERNA
|
|
dbfreelogin(mssql.login);
|
|
RETURN_FALSE;
|
|
}
|
|
- link = (int) index_ptr->ptr;
|
|
+ link = (int)(long) index_ptr->ptr;
|
|
ptr = zend_list_find(link,&type); /* check if the link is still there */
|
|
if (ptr && (type==le_link || type==le_plink)) {
|
|
zend_list_addref(link);
|
|
@@ -1122,7 +1122,7 @@ static void php_mssql_get_column_content
|
|
}
|
|
|
|
res_length = 19;
|
|
- spprintf(&res_buf, 0, "%d-%02d-%02d %02d:%02d:%02d" , dateinfo.year, dateinfo.month, dateinfo.day, dateinfo.hour, dateinfo.minute, dateinfo.second);
|
|
+ spprintf((char **)&res_buf, 0, "%d-%02d-%02d %02d:%02d:%02d" , dateinfo.year, dateinfo.month, dateinfo.day, dateinfo.hour, dateinfo.minute, dateinfo.second);
|
|
}
|
|
|
|
ZVAL_STRINGL(result, res_buf, res_length, 0);
|