Skip to content

Commit c5cdce2

Browse files
committed
Косметика кода.
1 parent 73516b3 commit c5cdce2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source/dllmain.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) 2018-2022 see Authors.txt
2+
* (C) 2018-2023 see Authors.txt
33
*
44
* This file is part of MPC-BE.
55
*
@@ -86,11 +86,11 @@ void CALLBACK OpenConfiguration(HWND hwnd, HINSTANCE hinst, LPSTR lpszCmdLine, i
8686
if (pFilter) {
8787
pFilter->AddRef();
8888

89-
CoInitialize(nullptr);
89+
hr = CoInitialize(nullptr);
9090

9191
// Get PropertyPages interface
9292
ISpecifyPropertyPages *pProp = nullptr;
93-
HRESULT hr = pFilter->QueryInterface<ISpecifyPropertyPages>(&pProp);
93+
hr = pFilter->QueryInterface<ISpecifyPropertyPages>(&pProp);
9494
if (SUCCEEDED(hr) && pProp)
9595
{
9696
// Get the filter's name and IUnknown pointer.

0 commit comments

Comments
 (0)