edink           Fri Aug 25 12:03:31 2006 UTC

  Modified files:              
    /php-src/ext/com_dotnet     com_typeinfo.c 
  Log:
  MFB: Fixed #37602 by olek at neurosoft dot pl
  
http://cvs.php.net/viewvc.cgi/php-src/ext/com_dotnet/com_typeinfo.c?r1=1.9&r2=1.10&diff_format=u
Index: php-src/ext/com_dotnet/com_typeinfo.c
diff -u php-src/ext/com_dotnet/com_typeinfo.c:1.9 
php-src/ext/com_dotnet/com_typeinfo.c:1.10
--- php-src/ext/com_dotnet/com_typeinfo.c:1.9   Sat Apr 29 18:45:29 2006
+++ php-src/ext/com_dotnet/com_typeinfo.c       Fri Aug 25 12:03:31 2006
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: com_typeinfo.c,v 1.9 2006/04/29 18:45:29 fmk Exp $ */
+/* $Id: com_typeinfo.c,v 1.10 2006/08/25 12:03:31 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

Reply via email to