Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
82b7fc68
Commit
82b7fc68
authored
May 13, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
May 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Replace malloc() with HeapAlloc().
parent
7eac4672
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ddrawmodes.c
dlls/ddraw/tests/ddrawmodes.c
+3
-3
No files found.
dlls/ddraw/tests/ddrawmodes.c
View file @
82b7fc68
...
...
@@ -92,16 +92,16 @@ static void releasedirectdraw(void)
static
void
adddisplaymode
(
LPDDSURFACEDESC
lpddsd
)
{
if
(
!
modes
)
modes
=
malloc
(
(
modes_size
=
2
)
*
sizeof
(
DDSURFACEDESC
));
modes
=
HeapAlloc
(
GetProcessHeap
(),
0
,
(
modes_size
=
2
)
*
sizeof
(
DDSURFACEDESC
));
if
(
modes_cnt
==
modes_size
)
modes
=
realloc
(
modes
,
(
modes_size
*=
2
)
*
sizeof
(
DDSURFACEDESC
));
modes
=
HeapReAlloc
(
GetProcessHeap
(),
0
,
modes
,
(
modes_size
*=
2
)
*
sizeof
(
DDSURFACEDESC
));
assert
(
modes
);
modes
[
modes_cnt
++
]
=
*
lpddsd
;
}
static
void
flushdisplaymodes
(
void
)
{
free
(
modes
);
HeapFree
(
GetProcessHeap
(),
0
,
modes
);
modes
=
0
;
modes_cnt
=
modes_size
=
0
;
}
...
...
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