summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-12-09 01:54:56 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-12-09 01:54:56 +0000
commit1393ad9a35581a7f4006719e66d788c3cd8b6fc5 (patch)
treedf566eaf0a2c43687bb91e5cf21ae7b9edd82b97
parentfd6270d5152b66afc3535d724277a3355d2c67ff (diff)
downloadphp-git-1393ad9a35581a7f4006719e66d788c3cd8b6fc5.tar.gz
Kill unused variables.
-rw-r--r--ext/com_dotnet/com_variant.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/ext/com_dotnet/com_variant.c b/ext/com_dotnet/com_variant.c
index b8374bb7c1..a9b89c19ee 100644
--- a/ext/com_dotnet/com_variant.c
+++ b/ext/com_dotnet/com_variant.c
@@ -99,9 +99,6 @@ PHPAPI int php_com_zval_from_variant(zval *z, VARIANT *v, int codepage TSRMLS_DC
{
OLECHAR *olestring = NULL;
int ret = SUCCESS;
- SYSTEMTIME systime;
- struct tm tmv;
- php_com_dotnet_object *obj;
switch (V_VT(v)) {
case VT_EMPTY:
@@ -578,7 +575,6 @@ PHP_FUNCTION(variant_round)
VARIANT *vleft = NULL;
zval *zleft = NULL;
php_com_dotnet_object *obj;
- HRESULT result;
int codepage = CP_ACP;
long decimals = 0;
@@ -614,7 +610,6 @@ PHP_FUNCTION(variant_cmp)
VARIANT *vleft = NULL, *vright = NULL;
zval *zleft = NULL, *zright = NULL;
php_com_dotnet_object *obj;
- HRESULT result;
int codepage = CP_ACP;
long lcid = LOCALE_SYSTEM_DEFAULT;
long flags = 0;
@@ -832,8 +827,6 @@ PHP_FUNCTION(variant_index_get)
{
zval *zobj;
php_com_dotnet_object *obj;
- VARIANT vres;
- HRESULT res;
if (FAILURE == zend_parse_parameters(1 TSRMLS_CC,
"O", &zobj, php_com_variant_class_entry)) {