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
8c6fdf19
Commit
8c6fdf19
authored
Dec 14, 2007
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 14, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Do not reuse the name of a function argument for a local variable.
parent
aff83e69
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
utthunk.c
dlls/kernel32/utthunk.c
+2
-2
No files found.
dlls/kernel32/utthunk.c
View file @
8c6fdf19
...
...
@@ -167,8 +167,8 @@ static UTINFO *UTAlloc( HMODULE hModule, HMODULE16 hModule16,
if
(
!
UTGlue16_Segptr
)
{
HMODULE16
hMod
ule
=
GetModuleHandle16
(
"KERNEL"
);
UTGlue16_Segptr
=
GetProcAddress16
(
hMod
ule
,
"UTGlue16"
);
HMODULE16
hMod
=
GetModuleHandle16
(
"KERNEL"
);
UTGlue16_Segptr
=
GetProcAddress16
(
hMod
,
"UTGlue16"
);
if
(
!
UTGlue16_Segptr
)
return
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