[Windows] Fix GCC MinGW warnings.

This commit is contained in:
bruvzg 2022-10-12 20:17:49 +03:00
parent ea47e03b36
commit ad4cc8682b
No known key found for this signature in database
GPG Key ID: 7960FCF39844EC38
1 changed files with 3 additions and 1 deletions

View File

@ -331,8 +331,10 @@ Vector<String> OS_Windows::get_video_adapter_driver_info() const {
if (hr != S_OK) { if (hr != S_OK) {
return Vector<String>(); return Vector<String>();
} }
BSTR resource_name = SysAllocString(L"root\\CIMV2");
hr = wbemLocator->ConnectServer(resource_name, NULL, NULL, NULL, 0, NULL, NULL, &wbemServices);
SysFreeString(resource_name);
hr = wbemLocator->ConnectServer(L"root\\CIMV2", NULL, NULL, 0, NULL, 0, 0, &wbemServices);
SAFE_RELEASE(wbemLocator) // from now on, use `wbemServices` SAFE_RELEASE(wbemLocator) // from now on, use `wbemServices`
if (hr != S_OK) { if (hr != S_OK) {
SAFE_RELEASE(wbemServices) SAFE_RELEASE(wbemServices)