From 1ba89b739225d1440e8a70ac60d63ee9bfca2331 Mon Sep 17 00:00:00 2001 From: Edin Kadribasic Date: Fri, 25 Aug 2006 12:03:31 +0000 Subject: [PATCH] MFB: Fixed #37602 by olek at neurosoft dot pl --- ext/com_dotnet/com_typeinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/com_dotnet/com_typeinfo.c b/ext/com_dotnet/com_typeinfo.c index fd76fa639a..004b6de73b 100644 --- a/ext/com_dotnet/com_typeinfo.c +++ b/ext/com_dotnet/com_typeinfo.c @@ -220,7 +220,7 @@ PHPAPI int php_com_import_typelib(ITypeLib *TL, int mode, int codepage TSRMLS_DC /* Type-library stuff */ void php_com_typelibrary_dtor(void *pDest) { - ITypeLib *Lib = *(ITypeLib**)pDest; + ITypeLib *Lib = (ITypeLib*)pDest; ITypeLib_Release(Lib); } -- 2.50.1