diff options
| author | Anatol Belski <ab@php.net> | 2016-01-11 09:46:53 +0100 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2016-01-11 09:46:53 +0100 |
| commit | 39e571c8d84467a54c357549e35227d87980c440 (patch) | |
| tree | 868bc72df941053adde1d425416e709fe238bd18 /ext/interbase/php_ibase_includes.h | |
| parent | 57a2a8d4fa61b23852f0ef8b1323128f421817c7 (diff) | |
| download | php-git-39e571c8d84467a54c357549e35227d87980c440.tar.gz | |
further datatype and range check fixes for ibase
Diffstat (limited to 'ext/interbase/php_ibase_includes.h')
| -rw-r--r-- | ext/interbase/php_ibase_includes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/interbase/php_ibase_includes.h b/ext/interbase/php_ibase_includes.h index fbbf7e34ce..860f94b876 100644 --- a/ext/interbase/php_ibase_includes.h +++ b/ext/interbase/php_ibase_includes.h @@ -61,9 +61,9 @@ extern int le_link, le_plink, le_trans; ZEND_BEGIN_MODULE_GLOBALS(ibase) ISC_STATUS status[20]; zend_resource *default_link; - long num_links, num_persistent; + zend_long num_links, num_persistent; char errmsg[MAX_ERRMSG]; - long sql_code; + zend_long sql_code; ZEND_END_MODULE_GLOBALS(ibase) ZEND_EXTERN_MODULE_GLOBALS(ibase) @@ -176,7 +176,7 @@ void php_ibase_query_minit(INIT_FUNC_ARGS); void php_ibase_blobs_minit(INIT_FUNC_ARGS); int _php_ibase_string_to_quad(char const *id, ISC_QUAD *qd); zend_string *_php_ibase_quad_to_string(ISC_QUAD const qd); -int _php_ibase_blob_get(zval *return_value, ibase_blob *ib_blob, unsigned long max_len); +int _php_ibase_blob_get(zval *return_value, ibase_blob *ib_blob, zend_ulong max_len); int _php_ibase_blob_add(zval *string_arg, ibase_blob *ib_blob); /* provided by ibase_events.c */ |
