зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1361654 - Initializing all the member variables in SlicedInputStream, r=qdot
This commit is contained in:
Родитель
bf4c15a65c
Коммит
c41696993b
|
@ -38,6 +38,8 @@ SlicedInputStream::SlicedInputStream(nsIInputStream* aInputStream,
|
|||
, mLength(aLength)
|
||||
, mCurPos(0)
|
||||
, mClosed(false)
|
||||
, mAsyncWaitFlags(0)
|
||||
, mAsyncWaitRequestedCount(0)
|
||||
{
|
||||
MOZ_ASSERT(aInputStream);
|
||||
SetSourceStream(aInputStream);
|
||||
|
@ -52,6 +54,8 @@ SlicedInputStream::SlicedInputStream()
|
|||
, mLength(0)
|
||||
, mCurPos(0)
|
||||
, mClosed(false)
|
||||
, mAsyncWaitFlags(0)
|
||||
, mAsyncWaitRequestedCount(0)
|
||||
{}
|
||||
|
||||
SlicedInputStream::~SlicedInputStream()
|
||||
|
|
Загрузка…
Ссылка в новой задаче