Nikolay Sivov : scrrun: Fix refcount on GetTypeInfo().
14 Jan
2015
14 Jan
'15
8:35 p.m.
Module: wine Branch: master Commit: c1a3a1d5168ba5a4ba7704e5b7d275b005972729 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c1a3a1d5168ba5a4ba7704e5b7... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Wed Jan 14 15:23:06 2015 +0300 scrrun: Fix refcount on GetTypeInfo(). --- dlls/scrrun/scrrun.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/scrrun/scrrun.c b/dlls/scrrun/scrrun.c index bad5b1c..3afcd50 100644 --- a/dlls/scrrun/scrrun.c +++ b/dlls/scrrun/scrrun.c @@ -152,6 +152,7 @@ HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo) } *typeinfo = typeinfos[tid]; + ITypeInfo_AddRef(typeinfos[tid]); return S_OK; }
4082
Age (days ago)
4082
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard