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
4282fc12
Commit
4282fc12
authored
Jan 03, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt/tests: Use unsigned int instead of size_t for the malloc tests.
parent
9e070a61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
heap.c
dlls/msvcrt/tests/heap.c
+5
-4
No files found.
dlls/msvcrt/tests/heap.c
View file @
4282fc12
...
...
@@ -29,7 +29,7 @@ static void * (*p_aligned_offset_malloc)(size_t,size_t,size_t) = NULL;
static
void
*
(
*
p_aligned_realloc
)(
void
*
,
size_t
,
size_t
)
=
NULL
;
static
void
*
(
*
p_aligned_offset_realloc
)(
void
*
,
size_t
,
size_t
,
size_t
)
=
NULL
;
static
void
test_aligned_malloc
(
size_t
size
,
size_
t
alignment
)
static
void
test_aligned_malloc
(
unsigned
int
size
,
unsigned
in
t
alignment
)
{
void
*
mem
;
...
...
@@ -57,7 +57,7 @@ static void test_aligned_malloc(size_t size, size_t alignment)
ok
(
errno
==
EINVAL
,
"_aligned_malloc(%d, %d) errno: %d != %d
\n
"
,
size
,
alignment
,
errno
,
EINVAL
);
}
static
void
test_aligned_offset_malloc
(
size_t
size
,
size_t
alignment
,
size_
t
offset
)
static
void
test_aligned_offset_malloc
(
unsigned
int
size
,
unsigned
int
alignment
,
unsigned
in
t
offset
)
{
void
*
mem
;
...
...
@@ -88,7 +88,7 @@ static void test_aligned_offset_malloc(size_t size, size_t alignment, size_t off
ok
(
errno
==
EINVAL
,
"_aligned_offset_malloc(%d, %d, %d) errno: %d != %d
\n
"
,
size
,
alignment
,
offset
,
errno
,
EINVAL
);
}
static
void
test_aligned_realloc
(
size_t
size1
,
size_t
size2
,
size_
t
alignment
)
static
void
test_aligned_realloc
(
unsigned
int
size1
,
unsigned
int
size2
,
unsigned
in
t
alignment
)
{
void
*
mem
,
*
mem1
,
*
mem2
;
...
...
@@ -160,7 +160,8 @@ static void test_aligned_realloc(size_t size1, size_t size2, size_t alignment)
ok
(
errno
==
EINVAL
,
"_aligned_malloc(%d, %d) errno: %d != %d
\n
"
,
size1
,
alignment
,
errno
,
EINVAL
);
}
static
void
test_aligned_offset_realloc
(
size_t
size1
,
size_t
size2
,
size_t
alignment
,
size_t
offset
)
static
void
test_aligned_offset_realloc
(
unsigned
int
size1
,
unsigned
int
size2
,
unsigned
int
alignment
,
unsigned
int
offset
)
{
void
*
mem
,
*
mem1
,
*
mem2
;
...
...
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