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
8235b559
Commit
8235b559
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: When releasing marshal data of a normal ref ignore any remaining weak refs.
parent
17d81e09
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
stubmanager.c
dlls/ole32/stubmanager.c
+1
-1
marshal.c
dlls/ole32/tests/marshal.c
+1
-1
No files found.
dlls/ole32/stubmanager.c
View file @
8235b559
...
...
@@ -578,7 +578,7 @@ void stub_manager_release_marshal_data(struct stub_manager *m, ULONG refs, const
else
if
(
ifstub
->
flags
&
MSHLFLAGS_TABLESTRONG
)
refs
=
1
;
stub_manager_ext_release
(
m
,
refs
,
tableweak
,
FALSE
);
stub_manager_ext_release
(
m
,
refs
,
tableweak
,
!
tableweak
);
}
/* is an ifstub table marshaled? */
...
...
dlls/ole32/tests/marshal.c
View file @
8235b559
...
...
@@ -1399,12 +1399,12 @@ static void test_tableweak_and_normal_marshal_and_releasedata(void)
if
(
with_external_conn
)
{
todo_wine
ok_more_than_one_lock
();
IStream_Seek
(
data
.
pStream1
,
ullZero
,
STREAM_SEEK_SET
,
NULL
);
release_host_object
(
tid
,
1
);
}
else
todo_wine
ok_no_locks
();
IStream_Release
(
data
.
pStream1
);
...
...
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