mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
MFH
This commit is contained in:
parent
b24fd9a3d6
commit
a4ae84d014
@ -1117,7 +1117,7 @@ PHP_FUNCTION(ibase_query)
|
||||
}
|
||||
case 1:
|
||||
case 0:
|
||||
if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() ? 1 : 0 TSRMLS_CC, "s|z", &query,
|
||||
if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() ? 1 : 0 TSRMLS_CC, "s", &query,
|
||||
&query_len)) {
|
||||
ZEND_FETCH_RESOURCE2(ib_link, ibase_db_link *, NULL, IBG(default_link), LE_LINK,
|
||||
le_link, le_plink);
|
||||
|
@ -425,7 +425,8 @@ static void _php_ibase_backup_restore(INTERNAL_FUNCTION_PARAMETERS, char operati
|
||||
*/
|
||||
zval *res;
|
||||
char *db, *bk, buf[200];
|
||||
long dblen, bklen, spb_len, opts = 0;
|
||||
int dblen, bklen, spb_len;
|
||||
long opts = 0;
|
||||
zend_bool verbose = 0;
|
||||
ibase_service *svm;
|
||||
|
||||
@ -489,7 +490,8 @@ static void _php_ibase_service_action(INTERNAL_FUNCTION_PARAMETERS, char svc_act
|
||||
{
|
||||
zval *res;
|
||||
char buf[128], *db;
|
||||
long action, spb_len, dblen, argument = 0;
|
||||
int dblen, spb_len;
|
||||
long action, argument = 0;
|
||||
ibase_service *svm;
|
||||
|
||||
RESET_ERRMSG;
|
||||
|
Loading…
Reference in New Issue
Block a user