diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-07-23 16:54:54 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-07-23 16:54:54 +0000 |
commit | fc0799f0ca1751f370ab25635f34a48285279de5 (patch) | |
tree | b8a42cb6f4a44347d064e4399a2dc4e0a2dd6cb3 /ext/mssql/php_mssql.c | |
parent | 3a43c4124fbb47292ace7fb086ad2d9f06c74a51 (diff) | |
download | php-git-fc0799f0ca1751f370ab25635f34a48285279de5.tar.gz |
MFH: Removed unused variables.
Diffstat (limited to 'ext/mssql/php_mssql.c')
-rw-r--r-- | ext/mssql/php_mssql.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index 969150e87e..583e66bf90 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -1903,7 +1903,7 @@ PHP_FUNCTION(mssql_bind) mssql_link *mssql_ptr; mssql_statement *statement; mssql_bind bind,*bindp; - int id = 0, status = 0; + int status = 0; LPBYTE value = NULL; /* BEGIN input validation */ @@ -2062,7 +2062,6 @@ PHP_FUNCTION(mssql_execute) mssql_statement *statement; mssql_result *result; int num_fields; - int blocks_initialized=1; int batchsize; int ac = ZEND_NUM_ARGS(); |