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
f367051a
Commit
f367051a
authored
Sep 12, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Parameters to virtual memory functions need to be SIZE_T.
parent
2372e9c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
process.c
dlls/kernel/process.c
+3
-3
No files found.
dlls/kernel/process.c
View file @
f367051a
...
...
@@ -310,7 +310,7 @@ static HMODULE load_pe_exe( const WCHAR *name, HANDLE file )
void
*
module
;
OBJECT_ATTRIBUTES
attr
;
LARGE_INTEGER
size
;
DWORD
len
=
0
;
SIZE_T
len
=
0
;
attr
.
Length
=
sizeof
(
attr
);
attr
.
RootDirectory
=
0
;
...
...
@@ -362,7 +362,7 @@ static HMODULE load_pe_exe( const WCHAR *name, HANDLE file )
*/
static
BOOL
build_initial_environment
(
char
**
environ
)
{
ULONG
size
=
1
;
SIZE_T
size
=
1
;
char
**
e
;
WCHAR
*
p
,
*
endptr
;
void
*
ptr
;
...
...
@@ -738,7 +738,7 @@ static BOOL init_user_process_params( RTL_USER_PROCESS_PARAMETERS *params )
{
BOOL
ret
;
void
*
ptr
;
DWORD
size
,
env_size
,
info_size
;
SIZE_T
size
,
env_size
,
info_size
;
HANDLE
hstdin
,
hstdout
,
hstderr
;
size
=
info_size
=
params
->
AllocationSize
;
...
...
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