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:
authorkasper93 <kasper93@gmail.com>2013-09-13 16:48:51 +0400
committerkasper93 <kasper93@gmail.com>2013-10-20 17:44:11 +0400
commita4a2ea678a0c66b0b21dab4ee3d30ad98da701bd (patch)
treef4733336aeebac17b5b395e91cfc624670cb29c2 /src/filters/renderer/VideoRenderers/madVRAllocatorPresenter.cpp
parentb8e82fb73dcfc3aa10a0a166e89021735ef0d9a6 (diff)
Fix uninitialized class members
Fixes CID #366317, #366318, #366360, #966281, #966282, #966283, #966284, #966285, #966286, #966287, #966310, #966311, #966313, #966314, #966316, #966328, #966329, #966343, #966345, #966346, #966347, #966349, #966350, #966354, #966358, #966359, #966361, #966362, #966363, #966364, #966365, #966366, #966370, #966371, #966373, #966374, #966375, #966376, #966377, #966378, #1026047, #1027114, #1041190
Diffstat (limited to 'src/filters/renderer/VideoRenderers/madVRAllocatorPresenter.cpp')
-rw-r--r--src/filters/renderer/VideoRenderers/madVRAllocatorPresenter.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/filters/renderer/VideoRenderers/madVRAllocatorPresenter.cpp b/src/filters/renderer/VideoRenderers/madVRAllocatorPresenter.cpp
index 9b9823fde..741f9b35a 100644
--- a/src/filters/renderer/VideoRenderers/madVRAllocatorPresenter.cpp
+++ b/src/filters/renderer/VideoRenderers/madVRAllocatorPresenter.cpp
@@ -52,6 +52,7 @@ public IUnknown {
CmadVRAllocatorPresenter::CmadVRAllocatorPresenter(HWND hWnd, HRESULT& hr, CString& _Error)
: CSubPicAllocatorPresenterImpl(hWnd, hr, &_Error)
, m_ScreenSize(0, 0)
+ , m_bIsFullscreen(false)
{
if (FAILED(hr)) {
_Error += L"ISubPicAllocatorPresenterImpl failed\n";