diff options
author | foobar <sniper@php.net> | 2003-07-10 01:17:34 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-07-10 01:17:34 +0000 |
commit | 3396cb340a6efafc8f1c2bfe399ce7e01b5adc07 (patch) | |
tree | 4fea4467498cbcd51d1fc6e7040d5e396f46ed93 /ext/interbase/php_interbase.h | |
parent | b645c60bd5aec44cb447ca7ab0af7b79776239ab (diff) | |
download | php-git-3396cb340a6efafc8f1c2bfe399ce7e01b5adc07.tar.gz |
Fix crashes in certain situations (whenever there is an error, basically..)
Diffstat (limited to 'ext/interbase/php_interbase.h')
-rw-r--r-- | ext/interbase/php_interbase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/interbase/php_interbase.h b/ext/interbase/php_interbase.h index fb47daae59..a06861cf56 100644 --- a/ext/interbase/php_interbase.h +++ b/ext/interbase/php_interbase.h @@ -90,7 +90,7 @@ PHP_FUNCTION(ibase_errmsg); #define IBASE_BLOB_SEG 4096 ZEND_BEGIN_MODULE_GLOBALS(ibase) - ISC_STATUS status[20]; + ISC_STATUS *status; long default_link; long num_links, num_persistent; long max_links, max_persistent; |