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
a869964b
Commit
a869964b
authored
Aug 06, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
Aug 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
net: LoadStringW incorrect size bytes vs characters.
parent
39f4583e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
net.c
programs/net/net.c
+1
-1
No files found.
programs/net/net.c
View file @
a869964b
...
@@ -59,7 +59,7 @@ static int output_string(int msg, ...)
...
@@ -59,7 +59,7 @@ static int output_string(int msg, ...)
int
len
;
int
len
;
va_list
arguments
;
va_list
arguments
;
LoadStringW
(
GetModuleHandleW
(
NULL
),
msg
,
fmt
,
sizeof
(
fmt
));
LoadStringW
(
GetModuleHandleW
(
NULL
),
msg
,
fmt
,
sizeof
(
fmt
)
/
sizeof
(
fmt
[
0
])
);
va_start
(
arguments
,
msg
);
va_start
(
arguments
,
msg
);
len
=
vsprintfW
(
str
,
fmt
,
arguments
);
len
=
vsprintfW
(
str
,
fmt
,
arguments
);
output_write
(
str
,
len
);
output_write
(
str
,
len
);
...
...
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