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
5ae5a68e
Commit
5ae5a68e
authored
Oct 14, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Sign-compare warnings fix.
parent
88c12282
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
lzexpand.c
dlls/kernel32/lzexpand.c
+1
-2
profile.c
dlls/kernel32/profile.c
+1
-1
vxd.c
dlls/kernel32/vxd.c
+1
-1
No files found.
dlls/kernel32/lzexpand.c
View file @
5ae5a68e
...
...
@@ -181,8 +181,7 @@ HFILE WINAPI LZInit( HFILE hfSrc )
struct
lzfileheader
head
;
struct
lzstate
*
lzs
;
DWORD
ret
;
int
i
;
int
i
,
ret
;
TRACE
(
"(%d)
\n
"
,
hfSrc
);
ret
=
read_header
(
hfSrc
,
&
head
);
...
...
dlls/kernel32/profile.c
View file @
5ae5a68e
...
...
@@ -115,7 +115,7 @@ static void PROFILE_CopyEntry( LPWSTR buffer, LPCWSTR value, int len,
}
lstrcpynW
(
buffer
,
value
,
len
);
if
(
quote
&&
(
len
>=
strlenW
(
value
)))
buffer
[
strlenW
(
buffer
)
-
1
]
=
'\0'
;
if
(
quote
&&
(
len
>=
l
strlenW
(
value
)))
buffer
[
strlenW
(
buffer
)
-
1
]
=
'\0'
;
}
/* byte-swaps shorts in-place in a buffer. len is in WCHARs */
...
...
dlls/kernel32/vxd.c
View file @
5ae5a68e
...
...
@@ -272,7 +272,7 @@ done:
*/
void
WINAPI
__regs_VxDCall
(
DWORD
service
,
CONTEXT86
*
context
)
{
int
i
;
unsigned
int
i
;
VxDCallProc
proc
=
NULL
;
RtlEnterCriticalSection
(
&
vxd_section
);
...
...
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