diff options
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 = ""; |