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
3d96c56f
Commit
3d96c56f
authored
Nov 21, 2005
by
Rein Klazes
Committed by
Alexandre Julliard
Nov 21, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not forward _mbccpy to strcpy.
Remove the error message in _mbccpy, it is not an error.
parent
36f6bbb8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
mbcs.c
dlls/msvcrt/mbcs.c
+2
-4
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcrt/mbcs.c
View file @
3d96c56f
...
...
@@ -281,11 +281,9 @@ MSVCRT_size_t _mbstrlen(const char* str)
*/
void
_mbccpy
(
unsigned
char
*
dest
,
const
unsigned
char
*
src
)
{
*
dest
++
=
*
src
;
*
dest
=
*
src
;
if
(
MSVCRT___mb_cur_max
>
1
&&
MSVCRT_isleadbyte
(
*
src
))
*
dest
=
*++
src
;
/* MB char */
else
ERR
(
"failure.. is this ok?
\n
"
);
*++
dest
=
*++
src
;
/* MB char */
}
/*********************************************************************
...
...
dlls/msvcrt/msvcrt.spec
View file @
3d96c56f
...
...
@@ -335,7 +335,7 @@
@ cdecl _mbbtombc(long)
@ stub _mbbtype #(long long)
# extern _mbcasemap
@ cdecl _mbccpy (str str)
strcpy
@ cdecl _mbccpy (str str)
@ stub _mbcjistojms #(long)
@ stub _mbcjmstojis #(long)
@ cdecl _mbclen(ptr)
...
...
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