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
24703e4c
Commit
24703e4c
authored
Aug 14, 2018
by
Alex Henrie
Committed by
Alexandre Julliard
Aug 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Rewrite add_data with CoTaskMemRealloc and error handling.
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
32169eaf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
filtermapper.c
dlls/quartz/filtermapper.c
+5
-5
No files found.
dlls/quartz/filtermapper.c
View file @
24703e4c
...
...
@@ -145,11 +145,11 @@ static int add_data(struct Vector * v, const BYTE * pData, int size)
int
index
=
v
->
current
;
if
(
v
->
current
+
size
>
v
->
capacity
)
{
LPBYTE
pOldData
=
v
->
pData
;
v
->
capacity
=
(
v
->
capacity
+
size
)
*
2
;
v
->
pData
=
CoTaskMemAlloc
(
v
->
capacity
)
;
memcpy
(
v
->
pData
,
pOldData
,
v
->
current
)
;
CoTaskMemFree
(
pOldData
)
;
int
new_capacity
=
(
v
->
capacity
+
size
)
*
2
;
BYTE
*
new_data
=
CoTaskMemRealloc
(
v
->
pData
,
new_capacity
)
;
if
(
!
new_data
)
return
-
1
;
v
->
capacity
=
new_capacity
;
v
->
pData
=
new_data
;
}
memcpy
(
v
->
pData
+
v
->
current
,
pData
,
size
);
v
->
current
+=
size
;
...
...
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