Fix implicit false-to-nullptr conversions
This commit is contained in:
parent
a35f540e7a
commit
e67eb4693e
|
@ -152,7 +152,7 @@ IMMDevice* WASAPIStream::GetDeviceByName(std::string name)
|
||||||
__uuidof(IMMDeviceEnumerator), reinterpret_cast<LPVOID*>(&enumerator));
|
__uuidof(IMMDeviceEnumerator), reinterpret_cast<LPVOID*>(&enumerator));
|
||||||
|
|
||||||
if (!HandleWinAPI("Failed to create MMDeviceEnumerator", result))
|
if (!HandleWinAPI("Failed to create MMDeviceEnumerator", result))
|
||||||
return false;
|
return nullptr;
|
||||||
|
|
||||||
IMMDeviceCollection* devices;
|
IMMDeviceCollection* devices;
|
||||||
result = enumerator->EnumAudioEndpoints(eRender, DEVICE_STATE_ACTIVE, &devices);
|
result = enumerator->EnumAudioEndpoints(eRender, DEVICE_STATE_ACTIVE, &devices);
|
||||||
|
|
|
@ -483,7 +483,7 @@ std::string UTF16ToCP(u32 code_page, std::wstring_view input)
|
||||||
output.resize(size);
|
output.resize(size);
|
||||||
|
|
||||||
if (size != WideCharToMultiByte(code_page, 0, input.data(), static_cast<int>(input.size()),
|
if (size != WideCharToMultiByte(code_page, 0, input.data(), static_cast<int>(input.size()),
|
||||||
&output[0], static_cast<int>(output.size()), nullptr, false))
|
&output[0], static_cast<int>(output.size()), nullptr, nullptr))
|
||||||
{
|
{
|
||||||
const DWORD error_code = GetLastError();
|
const DWORD error_code = GetLastError();
|
||||||
ERROR_LOG(COMMON, "WideCharToMultiByte Error in String '%s': %lu",
|
ERROR_LOG(COMMON, "WideCharToMultiByte Error in String '%s': %lu",
|
||||||
|
|
Loading…
Reference in New Issue