Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1864db2f
Commit
1864db2f
authored
Oct 24, 2013
by
Huw Davies
Committed by
Alexandre Julliard
Oct 24, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Call IExternalConnection_ReleaseConnection with the correct final parameter.
parent
8235b559
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
6 deletions
+1
-6
stubmanager.c
dlls/ole32/stubmanager.c
+1
-1
marshal.c
dlls/ole32/tests/marshal.c
+0
-5
No files found.
dlls/ole32/stubmanager.c
View file @
1864db2f
...
...
@@ -437,7 +437,7 @@ ULONG stub_manager_ext_release(struct stub_manager *m, ULONG refs, BOOL tablewea
TRACE
(
"removed %u refs from %p (oid %s), rc is now %u
\n
"
,
refs
,
m
,
wine_dbgstr_longlong
(
m
->
oid
),
rc
);
if
(
last_extern_ref
&&
m
->
extern_conn
)
IExternalConnection_ReleaseConnection
(
m
->
extern_conn
,
EXTCONN_STRONG
,
0
,
TRUE
/* FIXME: Use last_unlock releases? */
);
IExternalConnection_ReleaseConnection
(
m
->
extern_conn
,
EXTCONN_STRONG
,
0
,
last_unlock_releases
);
if
(
rc
==
0
)
stub_manager_int_release
(
m
);
...
...
dlls/ole32/tests/marshal.c
View file @
1864db2f
...
...
@@ -430,7 +430,6 @@ static void test_normal_marshal_and_unmarshal(void)
ok_more_than_one_lock
();
ok_zero_external_conn
();
todo_wine
ok_last_release_closes
(
FALSE
);
IUnknown_Release
(
pProxy
);
...
...
@@ -512,7 +511,6 @@ static void test_same_apartment_unmarshal_failure(void)
ok_no_locks
();
ok_zero_external_conn
();
todo_wine
ok_last_release_closes
(
FALSE
);
IStream_Release
(
pStream
);
...
...
@@ -1582,7 +1580,6 @@ static void test_lock_object_external(void)
ok_no_locks
();
ok_zero_external_conn
();
todo_wine
ok_last_release_closes
(
FALSE
);
/* test CoLockObjectExternal doesn't release the last reference to an
...
...
@@ -1603,7 +1600,6 @@ todo_wine
ok_more_than_one_lock
();
ok_zero_external_conn
();
todo_wine
ok_last_release_closes
(
FALSE
);
CoDisconnectObject
((
IUnknown
*
)
&
Test_ClassFactory
,
0
);
...
...
@@ -1676,7 +1672,6 @@ static void test_normal_marshal_and_unmarshal_twice(void)
ok_more_than_one_lock
();
ok_zero_external_conn
();
todo_wine
ok_last_release_closes
(
FALSE
);
IStream_Seek
(
pStream
,
ullZero
,
STREAM_SEEK_SET
,
NULL
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment