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
b3fe96a0
Commit
b3fe96a0
authored
Jul 31, 2015
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 31, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Fix stringbuf and strstreambuf seekpos implementation.
parent
cccbb4eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
ios.c
dlls/msvcp60/ios.c
+3
-3
ios.c
dlls/msvcp90/ios.c
+3
-3
No files found.
dlls/msvcp60/ios.c
View file @
b3fe96a0
...
...
@@ -4214,7 +4214,7 @@ fpos_int* __thiscall basic_stringbuf_char_seekpos(basic_stringbuf_char *this,
return
ret
;
}
return
basic_stringbuf_char_seekoff
(
this
,
ret
,
pos
.
off
,
SEEKDIR_beg
,
mode
);
return
basic_stringbuf_char_seekoff
(
this
,
ret
,
pos
.
pos
+
pos
.
off
,
SEEKDIR_beg
,
mode
);
}
/* ?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z */
...
...
@@ -4635,7 +4635,7 @@ fpos_int* __thiscall basic_stringbuf_wchar_seekpos(basic_stringbuf_wchar *this,
return
ret
;
}
return
basic_stringbuf_wchar_seekoff
(
this
,
ret
,
pos
.
off
,
SEEKDIR_beg
,
mode
);
return
basic_stringbuf_wchar_seekoff
(
this
,
ret
,
pos
.
pos
+
pos
.
off
,
SEEKDIR_beg
,
mode
);
}
/* ?str@?$basic_stringbuf@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEXABV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@@Z */
...
...
@@ -13382,7 +13382,7 @@ fpos_int* __thiscall strstreambuf_seekpos(strstreambuf *this, fpos_int *ret, fpo
return
ret
;
}
return
strstreambuf_seekoff
(
this
,
ret
,
pos
.
off
,
SEEKDIR_beg
,
mode
);
return
strstreambuf_seekoff
(
this
,
ret
,
pos
.
pos
+
pos
.
off
,
SEEKDIR_beg
,
mode
);
}
/* ?underflow@strstreambuf@std@@MAEHXZ */
...
...
dlls/msvcp90/ios.c
View file @
b3fe96a0
...
...
@@ -4350,7 +4350,7 @@ fpos_int* __thiscall basic_stringbuf_char_seekpos(basic_stringbuf_char *this,
return
ret
;
}
return
basic_stringbuf_char_seekoff
(
this
,
ret
,
pos
.
off
,
SEEKDIR_beg
,
mode
);
return
basic_stringbuf_char_seekoff
(
this
,
ret
,
pos
.
pos
+
pos
.
off
,
SEEKDIR_beg
,
mode
);
}
/* ?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z */
...
...
@@ -4771,7 +4771,7 @@ fpos_int* __thiscall basic_stringbuf_wchar_seekpos(basic_stringbuf_wchar *this,
return
ret
;
}
return
basic_stringbuf_wchar_seekoff
(
this
,
ret
,
pos
.
off
,
SEEKDIR_beg
,
mode
);
return
basic_stringbuf_wchar_seekoff
(
this
,
ret
,
pos
.
pos
+
pos
.
off
,
SEEKDIR_beg
,
mode
);
}
/* ?str@?$basic_stringbuf@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEXABV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@@Z */
...
...
@@ -13954,7 +13954,7 @@ fpos_int* __thiscall strstreambuf_seekpos(strstreambuf *this, fpos_int *ret, fpo
return
ret
;
}
return
strstreambuf_seekoff
(
this
,
ret
,
pos
.
off
,
SEEKDIR_beg
,
mode
);
return
strstreambuf_seekoff
(
this
,
ret
,
pos
.
pos
+
pos
.
off
,
SEEKDIR_beg
,
mode
);
}
/* ?underflow@strstreambuf@std@@MAEHXZ */
...
...
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