edink Fri Aug 25 12:01:57 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/com_dotnet com_typeinfo.c Log: Fixed #37602 by olek at neurosoft dot pl http://cvs.php.net/viewvc.cgi/php-src/ext/com_dotnet/com_typeinfo.c?r1=1.7.2.1&r2=1.7.2.1.2.1&diff_format=u Index: php-src/ext/com_dotnet/com_typeinfo.c diff -u php-src/ext/com_dotnet/com_typeinfo.c:1.7.2.1 php-src/ext/com_dotnet/com_typeinfo.c:1.7.2.1.2.1 --- php-src/ext/com_dotnet/com_typeinfo.c:1.7.2.1 Sun Jan 1 12:50:00 2006 +++ php-src/ext/com_dotnet/com_typeinfo.c Fri Aug 25 12:01:57 2006 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: com_typeinfo.c,v 1.7.2.1 2006/01/01 12:50:00 sniper Exp $ */ +/* $Id: com_typeinfo.c,v 1.7.2.1.2.1 2006/08/25 12:01:57 edink Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -220,7 +220,7 @@ /* Type-library stuff */ void php_com_typelibrary_dtor(void *pDest) { - ITypeLib *Lib = *(ITypeLib**)pDest; + ITypeLib *Lib = (ITypeLib*)pDest; ITypeLib_Release(Lib); }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php