From: Ilia Alshanetsky Date: Wed, 23 Jul 2003 16:54:54 +0000 (+0000) Subject: MFH: Removed unused variables. X-Git-Tag: php-4.3.3RC2~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fc0799f0ca1751f370ab25635f34a48285279de5;p=php MFH: Removed unused variables. --- 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();