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
4d7255d2
Commit
4d7255d2
authored
Jan 13, 2014
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Remove parameter checks from functions that are only used for old msvcp versions.
parent
0f81fcb0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
12 deletions
+0
-12
locale.c
dlls/msvcp90/locale.c
+0
-12
No files found.
dlls/msvcp90/locale.c
View file @
4d7255d2
...
...
@@ -9713,12 +9713,6 @@ size_t __cdecl mbsrtowcs(wchar_t *dst, const char **pstr, size_t n, mbstate_t *s
wchar_t
wc
;
const
char
*
src
;
if
(
!
pstr
)
{
*
_errno
()
=
EINVAL
;
_invalid_parameter
(
NULL
,
NULL
,
NULL
,
0
,
0
);
return
-
1
;
}
src
=
*
pstr
;
if
(
!
state
)
state
=
&
local_state
;
...
...
@@ -9757,12 +9751,6 @@ size_t __cdecl wcsrtombs(char *dst, const wchar_t **pstr, size_t n, mbstate_t *s
char
buffer
[
MB_LEN_MAX
];
size_t
ret
=
0
;
if
(
!
pstr
)
{
*
_errno
()
=
EINVAL
;
_invalid_parameter
(
NULL
,
NULL
,
NULL
,
0
,
0
);
return
-
1
;
}
src
=
*
pstr
;
while
(
!
dst
||
n
>
ret
)
...
...
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