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
e9ebbfc0
Commit
e9ebbfc0
authored
Sep 02, 2003
by
Robert Reif
Committed by
Alexandre Julliard
Sep 02, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Now that reference counting is correct, there is no need to check if
the base object goes away.
parent
5cab2b35
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
11 deletions
+0
-11
buffer.c
dlls/dsound/buffer.c
+0
-10
dsound_private.h
dlls/dsound/dsound_private.h
+0
-1
sound3d.c
dlls/dsound/sound3d.c
+0
-0
No files found.
dlls/dsound/buffer.c
View file @
e9ebbfc0
...
...
@@ -400,16 +400,6 @@ static DWORD WINAPI IDirectSoundBufferImpl_Release(LPDIRECTSOUNDBUFFER8 iface) {
}
}
if
(
This
->
ds3db
)
{
WARN
(
"ds3db still has reference
\n
"
);
EnterCriticalSection
(
&
(
This
->
ds3db
->
lock
));
This
->
ds3db
->
dsb
=
NULL
;
LeaveCriticalSection
(
&
(
This
->
ds3db
->
lock
));
}
if
(
This
->
iks
)
IKsPropertySet_Release
((
LPKSPROPERTYSET
)
This
->
iks
);
if
(
This
->
notifies
!=
NULL
)
HeapFree
(
GetProcessHeap
(),
0
,
This
->
notifies
);
...
...
dlls/dsound/dsound_private.h
View file @
e9ebbfc0
...
...
@@ -342,7 +342,6 @@ struct IDirectSound3DBufferImpl
DWORD
ref
;
/* IDirectSound3DBufferImpl fields */
IDirectSoundBufferImpl
*
dsb
;
CRITICAL_SECTION
lock
;
};
HRESULT
WINAPI
IDirectSound3DBufferImpl_Create
(
...
...
dlls/dsound/sound3d.c
View file @
e9ebbfc0
This diff is collapsed.
Click to expand it.
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