mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 22:23:07 +00:00
Merge pull request #67318 from bruvzg/more_gcc_warn
[Windows] Fix more GCC MinGW warnings.
This commit is contained in:
commit
40847f1436
@ -331,8 +331,10 @@ Vector<String> OS_Windows::get_video_adapter_driver_info() const {
|
||||
if (hr != S_OK) {
|
||||
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`
|
||||
if (hr != S_OK) {
|
||||
SAFE_RELEASE(wbemServices)
|
||||
|
Loading…
Reference in New Issue
Block a user