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
0efd18f4
Commit
0efd18f4
authored
Jan 21, 2018
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 23, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Fix the HeapReAlloc name in two comments.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
55b37182
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
heap.c
dlls/kernel32/tests/heap.c
+2
-2
No files found.
dlls/kernel32/tests/heap.c
View file @
0efd18f4
...
...
@@ -568,7 +568,7 @@ static void test_HeapCreate(void)
ok
(
HeapFree
(
heap
,
0
,
mem3
),
"HeapFree didn't pass successfully
\n
"
);
}
/* Check that HeapRe
a
lloc works */
/* Check that HeapRe
A
lloc works */
mem2a
=
HeapReAlloc
(
heap
,
HEAP_ZERO_MEMORY
,
mem2
,
memchunk
+
5
*
sysInfo
.
dwPageSize
);
ok
(
mem2a
!=
NULL
,
"HeapReAlloc failed
\n
"
);
if
(
mem2a
)
{
...
...
@@ -582,7 +582,7 @@ static void test_HeapCreate(void)
ok
(
!
error
,
"HeapReAlloc should have zeroed out its allocated memory
\n
"
);
}
/* Check that HeapRe
a
lloc honours HEAP_REALLOC_IN_PLACE_ONLY */
/* Check that HeapRe
A
lloc honours HEAP_REALLOC_IN_PLACE_ONLY */
error
=
FALSE
;
mem1a
=
HeapReAlloc
(
heap
,
HEAP_REALLOC_IN_PLACE_ONLY
,
mem1
,
memchunk
+
sysInfo
.
dwPageSize
);
if
(
mem1a
!=
NULL
)
{
...
...
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