diff options
| author | Edin Kadribasic <edink@php.net> | 2006-08-25 12:01:57 +0000 |
|---|---|---|
| committer | Edin Kadribasic <edink@php.net> | 2006-08-25 12:01:57 +0000 |
| commit | 21ac19eb947499316428d7c336e576a70c34fea4 (patch) | |
| tree | 1c4bcc9fe72aee8d535405a8b5d5ce4480dd8e3d | |
| parent | 99211d04442b5d92ceff94ccd01e6b57ef23f796 (diff) | |
| download | php-git-21ac19eb947499316428d7c336e576a70c34fea4.tar.gz | |
Fixed #37602 by olek at neurosoft dot pl
| -rw-r--r-- | ext/com_dotnet/com_typeinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/com_typeinfo.c b/ext/com_dotnet/com_typeinfo.c index 6e57eafeb9..903a60c22f 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); } |
