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
b0cf3214
Commit
b0cf3214
authored
Aug 28, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp60: Fix basic_filebuf::_Init implementation.
parent
52aeccf9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
ios.c
dlls/msvcp60/ios.c
+6
-3
No files found.
dlls/msvcp60/ios.c
View file @
b0cf3214
...
...
@@ -2310,7 +2310,8 @@ void __thiscall basic_filebuf_char__Init(basic_filebuf_char *this, FILE *file, b
this
->
cvt
=
NULL
;
this
->
state0
=
basic_filebuf_char__Init__Stinit
;
this
->
state
=
basic_filebuf_char__Init__Stinit
;
this
->
str
=
NULL
;
if
(
which
==
INITFL_new
)
this
->
str
=
NULL
;
this
->
close
=
(
which
==
INITFL_open
);
this
->
file
=
file
;
...
...
@@ -2802,7 +2803,8 @@ static void basic_filebuf_wchar__Init(basic_filebuf_wchar *this, FILE *file, bas
this
->
cvt
=
NULL
;
this
->
state0
=
basic_filebuf_short__Init__Stinit
;
this
->
state
=
basic_filebuf_short__Init__Stinit
;
this
->
str
=
NULL
;
if
(
which
==
INITFL_new
)
this
->
str
=
NULL
;
this
->
close
=
(
which
==
INITFL_open
);
this
->
file
=
file
;
...
...
@@ -2819,7 +2821,8 @@ void __thiscall basic_filebuf_short__Init(basic_filebuf_wchar *this, FILE *file,
this
->
cvt
=
NULL
;
this
->
state0
=
basic_filebuf_short__Init__Stinit
;
this
->
state
=
basic_filebuf_short__Init__Stinit
;
this
->
str
=
NULL
;
if
(
which
==
INITFL_new
)
this
->
str
=
NULL
;
this
->
close
=
(
which
==
INITFL_open
);
this
->
file
=
file
;
...
...
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