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
1ac70967
Commit
1ac70967
authored
Dec 06, 2011
by
Pierre Schweitzer
Committed by
Alexandre Julliard
Dec 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msacm32: Fix buffer double free.
parent
f566f38e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
internal.c
dlls/msacm32/internal.c
+10
-2
No files found.
dlls/msacm32/internal.c
View file @
1ac70967
...
...
@@ -1016,6 +1016,9 @@ PWINE_ACMLOCALDRIVERINST MSACM_OpenLocalDriver(PWINE_ACMLOCALDRIVER paldrv, LPAR
PWINE_ACMLOCALDRIVERINST
pDrvInst
;
pDrvInst
=
HeapAlloc
(
MSACM_hHeap
,
0
,
sizeof
(
WINE_ACMLOCALDRIVERINST
));
if
(
!
pDrvInst
)
return
NULL
;
pDrvInst
->
pLocalDriver
=
paldrv
;
pDrvInst
->
dwDriverID
=
0
;
pDrvInst
->
pNextACMInst
=
NULL
;
...
...
@@ -1037,9 +1040,14 @@ PWINE_ACMLOCALDRIVERINST MSACM_OpenLocalDriver(PWINE_ACMLOCALDRIVER paldrv, LPAR
ret
=
MSACM_OpenLocalDriver
(
paldrv
,
lParam2
);
if
(
!
ret
)
{
MSACM_CloseLocalDriver
(
pDrvInst
);
ERR
(
"load1 failed
\n
"
);
goto
exit
;
/* If MSACM_CloseLocalDriver returns TRUE,
* then pDrvInst has been freed
*/
if
(
!
MSACM_CloseLocalDriver
(
pDrvInst
))
goto
exit
;
return
NULL
;
}
pDrvInst
->
bSession
=
TRUE
;
return
ret
;
...
...
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