mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[c-host] dxgi: check for failure of getDesc1
This commit is contained in:
parent
127113a59b
commit
0dc0e6490c
@ -240,7 +240,12 @@ static bool dxgi_init(void * pointerShape, const unsigned int pointerSize)
|
|||||||
if (optAdapter)
|
if (optAdapter)
|
||||||
{
|
{
|
||||||
DXGI_ADAPTER_DESC1 adapterDesc;
|
DXGI_ADAPTER_DESC1 adapterDesc;
|
||||||
IDXGIAdapter1_GetDesc1(this->adapter, &adapterDesc);
|
status = IDXGIAdapter1_GetDesc1(this->adapter, &adapterDesc);
|
||||||
|
if (FAILED(status))
|
||||||
|
{
|
||||||
|
DEBUG_WINERROR("Failed to get the device description", status);
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
const size_t s = (wcslen(adapterDesc.Description)+1) * 2;
|
const size_t s = (wcslen(adapterDesc.Description)+1) * 2;
|
||||||
char * desc = malloc(s);
|
char * desc = malloc(s);
|
||||||
|
Loading…
Reference in New Issue
Block a user