mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-04 01:07:22 +00:00
Fix SubReadStream by initing _eos to false in the constructor (spotted thanks to our unit tests)
svn-id: r34555
This commit is contained in:
parent
621847b2e2
commit
15959faf3e
@ -430,7 +430,8 @@ public:
|
||||
: _parentStream(parentStream),
|
||||
_disposeParentStream(disposeParentStream),
|
||||
_pos(0),
|
||||
_end(end) {
|
||||
_end(end),
|
||||
_eos(false) {
|
||||
assert(parentStream);
|
||||
}
|
||||
~SubReadStream() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user