diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-07-23 16:54:34 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-07-23 16:54:34 +0000 |
commit | 3a9e5400c6f8230f1f805b4ed4a23d9fb82e8c56 (patch) | |
tree | ed87c1672b33d03fa39b550030477f1ba711838b /ext/mssql/php_mssql.c | |
parent | 1a1826903b78fbde6b68c36148357c33098175ea (diff) | |
download | php-git-3a9e5400c6f8230f1f805b4ed4a23d9fb82e8c56.tar.gz |
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 7e1b7a10be..ea73c20ccb 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -1893,7 +1893,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 */ @@ -2052,7 +2052,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(); |