quartz: Replace CloseHandle by RegCloseKey.

This commit is contained in:
George Stephanos 2013-08-11 14:29:27 +02:00 committed by Alexandre Julliard
parent 1825bddbff
commit 637257b939
1 changed files with 9 additions and 9 deletions

View File

@ -307,7 +307,7 @@ static HRESULT WINAPI FilterMapper3_CreateCategory(
hr = HRESULT_FROM_WIN32(lRet);
}
CloseHandle(hKey);
RegCloseKey(hKey);
CoTaskMemFree(wClsidCategory);
CoTaskMemFree(wClsidAMCat);
@ -1287,7 +1287,7 @@ static HRESULT WINAPI FilterMapper_RegisterFilter(IFilterMapper * iface, CLSID c
{
lRet = RegSetValueExW(hKey, NULL, 0, REG_SZ, (const BYTE*)szName, (strlenW(szName) + 1) * sizeof(WCHAR));
hr = HRESULT_FROM_WIN32(lRet);
CloseHandle(hKey);
RegCloseKey(hKey);
}
if (SUCCEEDED(hr))
@ -1303,7 +1303,7 @@ static HRESULT WINAPI FilterMapper_RegisterFilter(IFilterMapper * iface, CLSID c
{
lRet = RegSetValueExW(hKey, wszMeritName, 0, REG_DWORD, (LPBYTE)&dwMerit, sizeof(dwMerit));
hr = HRESULT_FROM_WIN32(lRet);
CloseHandle(hKey);
RegCloseKey(hKey);
}
CoTaskMemFree(wszClsid);
@ -1407,9 +1407,9 @@ static HRESULT WINAPI FilterMapper_RegisterPin(
CoTaskMemFree(wszClsid);
if (hKey)
CloseHandle(hKey);
RegCloseKey(hKey);
if (hPinsKey)
CloseHandle(hPinsKey);
RegCloseKey(hPinsKey);
return hr;
}
@ -1480,7 +1480,7 @@ static HRESULT WINAPI FilterMapper_RegisterPinType(
lRet = RegCreateKeyExW(hKey, wszKeyName, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hkeyDummy, NULL);
hr = HRESULT_FROM_WIN32(lRet);
CloseHandle(hKey);
RegCloseKey(hKey);
if (hkeyDummy) RegCloseKey(hkeyDummy);
}
@ -1514,7 +1514,7 @@ static HRESULT WINAPI FilterMapper_UnregisterFilter(IFilterMapper * iface, CLSID
{
lRet = RegDeleteKeyW(hKey, wszClsid);
hr = HRESULT_FROM_WIN32(lRet);
CloseHandle(hKey);
RegCloseKey(hKey);
}
if (SUCCEEDED(hr))
@ -1536,7 +1536,7 @@ static HRESULT WINAPI FilterMapper_UnregisterFilter(IFilterMapper * iface, CLSID
if (lRet != ERROR_SUCCESS)
hr = HRESULT_FROM_WIN32(lRet);
CloseHandle(hKey);
RegCloseKey(hKey);
}
CoTaskMemFree(wszClsid);
@ -1598,7 +1598,7 @@ static HRESULT WINAPI FilterMapper_UnregisterPin(IFilterMapper * iface, CLSID Fi
CoTaskMemFree(wszClsid);
if (hKey)
CloseHandle(hKey);
RegCloseKey(hKey);
return hr;
}