diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2005-04-18 03:04:15 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2005-04-18 03:04:15 +0000 |
| commit | 0810696e50ad8f291e3eaa65b291b809d6cd8f90 (patch) | |
| tree | 9d58f48ec891f7078b0b366fefc975cfe49189aa /ext/com_dotnet/com_dotnet.c | |
| parent | c17b18689c1474dc38cc22bbe904018216d19450 (diff) | |
| download | php-git-0810696e50ad8f291e3eaa65b291b809d6cd8f90.tar.gz | |
removed unused vars.
Diffstat (limited to 'ext/com_dotnet/com_dotnet.c')
| -rw-r--r-- | ext/com_dotnet/com_dotnet.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/com_dotnet/com_dotnet.c b/ext/com_dotnet/com_dotnet.c index 18bb22e979..7a0d6ade55 100644 --- a/ext/com_dotnet/com_dotnet.c +++ b/ext/com_dotnet/com_dotnet.c @@ -126,7 +126,6 @@ static HRESULT dotnet_init(char **p_where TSRMLS_DC) HRESULT hr; struct dotnet_runtime_stuff *stuff; IUnknown *unk = NULL; - OLECHAR *olename, *oletmp; char *where = ""; stuff = malloc(sizeof(*stuff)); @@ -188,7 +187,7 @@ PHP_FUNCTION(com_dotnet_create_instance) char *assembly_name, *datatype_name; int assembly_name_len, datatype_name_len; struct dotnet_runtime_stuff *stuff; - OLECHAR *olestring, *oleassembly, *oletype; + OLECHAR *oleassembly, *oletype; HRESULT hr; int ret = FAILURE; char *where = ""; |
