Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2014-07-12 22:38:34 +0400
committerUnderground78 <underground78@users.sourceforge.net>2014-07-13 20:08:39 +0400
commit467ae98c8ee48ec3b88c916981c608da57743705 (patch)
tree37f5e8f5f3b17261330c0bbd0c2ed2e28a2280e4 /src/thirdparty/AsyncReader
parent948e2a1666e67c2bfd5be38c4b626d53fbc011c4 (diff)
Async Reader: Initialize a member variable in the constructor.
Fixes CID 966379.
Diffstat (limited to 'src/thirdparty/AsyncReader')
-rw-r--r--src/thirdparty/AsyncReader/asyncrdr.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/thirdparty/AsyncReader/asyncrdr.cpp b/src/thirdparty/AsyncReader/asyncrdr.cpp
index 2fac05865..f6ef5d846 100644
--- a/src/thirdparty/AsyncReader/asyncrdr.cpp
+++ b/src/thirdparty/AsyncReader/asyncrdr.cpp
@@ -29,7 +29,8 @@ CAsyncOutputPin::CAsyncOutputPin(
L"Output",
PINDIR_OUTPUT),
m_pReader(pReader),
- m_pIo(pIo)
+ m_pIo(pIo),
+ m_bQueriedForAsyncReader(FALSE)
{
}