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
0569947d
Commit
0569947d
authored
Nov 18, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp60: Fixed basic_string::_Copy implementation.
parent
3a7a1d71
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
string.c
dlls/msvcp60/string.c
+2
-4
No files found.
dlls/msvcp60/string.c
View file @
0569947d
...
...
@@ -260,9 +260,8 @@ void __thiscall basic_string_char__Copy(basic_string_char *this, MSVCP_size_t co
{
TRACE
(
"%p %lu
\n
"
,
this
,
copy_len
);
if
(
!
basic_string_char__Grow
(
this
,
copy_len
,
FALS
E
))
if
(
!
basic_string_char__Grow
(
this
,
copy_len
,
TRU
E
))
return
;
basic_string_char__Eos
(
this
,
copy_len
);
}
/* ?_Pdif@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAIPBD0@Z */
...
...
@@ -1976,9 +1975,8 @@ void __thiscall basic_string_wchar__Copy(basic_string_wchar *this, MSVCP_size_t
{
TRACE
(
"%p %lu
\n
"
,
this
,
copy_len
);
if
(
!
basic_string_wchar__Grow
(
this
,
copy_len
,
FALS
E
))
if
(
!
basic_string_wchar__Grow
(
this
,
copy_len
,
TRU
E
))
return
;
basic_string_wchar__Eos
(
this
,
copy_len
);
}
/* ?_Pdif@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@CAIPBG0@Z */
...
...
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